From 3ef4002b3ff17002a45627c45d62eace9d84b958 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 19 Jan 1999 14:38:48 +0000 Subject: Update. 1999-01-19 Ulrich Drepper * timezone/zdump.c: Update from tzcode1999a. * timezone/zic.c: Likewise. --- timezone/zdump.c | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) (limited to 'timezone/zdump.c') diff --git a/timezone/zdump.c b/timezone/zdump.c index 8c4f6ad..094e172 100644 --- a/timezone/zdump.c +++ b/timezone/zdump.c @@ -1,6 +1,6 @@ #ifndef lint #ifndef NOID -static char elsieid[] = "@(#)zdump.c 7.27"; +static char elsieid[] = "@(#)zdump.c 7.28"; #endif /* !defined NOID */ #endif /* !defined lint */ @@ -127,7 +127,7 @@ extern char * optarg; extern int optind; extern char * tzname[2]; -static const char *abbr P((struct tm * tmp)); +static char * abbr P((struct tm * tmp)); static long delta P((struct tm * newp, struct tm * oldp)); static time_t hunt P((char * name, time_t lot, time_t hit)); static size_t longest; @@ -263,7 +263,7 @@ _("%s: usage is %s [ -v ] [ -c cutoff ] zonename ...\n"), show(argv[i], t, TRUE); } if (fflush(stdout) || ferror(stdout)) { - (void) fprintf(stderr, _("%s: Error writing standard output "), + (void) fprintf(stderr, _("%s: Error writing "), argv[0]); (void) perror(_("standard output")); (void) exit(EXIT_FAILURE); @@ -358,19 +358,15 @@ int v; (void) printf("\n"); } -static const char * +static char * abbr(tmp) struct tm * tmp; { - register const char *result; - static const char nada; + register char * result; + static char nada; -#ifdef TM_ZONE - result = tmp->TM_ZONE; -#else /* !defined TM_ZONE */ if (tmp->tm_isdst != 0 && tmp->tm_isdst != 1) return &nada; result = tzname[tmp->tm_isdst]; -#endif /* !defined TM_ZONE */ return (result == NULL) ? &nada : result; } -- cgit v1.1