diff options
author | Joseph Myers <joseph@codesourcery.com> | 2012-11-13 22:25:45 +0000 |
---|---|---|
committer | Joseph Myers <joseph@codesourcery.com> | 2012-11-13 22:25:45 +0000 |
commit | e27d476a652874ad8556fcdb06d877ebabb3e9c7 (patch) | |
tree | 076cd90c6e6d6dcf584493c8e332e3abe309665e /timezone/zdump.c | |
parent | 8ca8931812236803335e0aa13d4c3158bf6c67de (diff) | |
download | glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.tar.gz glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.tar.xz glibc-e27d476a652874ad8556fcdb06d877ebabb3e9c7.zip |
Update tzcode from upstream git and support --with-bugurl for it.
Diffstat (limited to 'timezone/zdump.c')
-rw-r--r-- | timezone/zdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/timezone/zdump.c b/timezone/zdump.c index 805267d14c..9255affc16 100644 --- a/timezone/zdump.c +++ b/timezone/zdump.c @@ -272,8 +272,8 @@ usage(FILE * const stream, const int status) (void) fprintf(stream, _("%s: usage is %s [ --version ] [ --help ] [ -v ] [ -c [loyear,]hiyear ] zonename ...\n\ \n\ -Report bugs to tz@elsie.nci.nih.gov.\n"), - progname, progname); +Report bugs to %s.\n"), + progname, progname, REPORT_BUGS_TO); exit(status); } @@ -309,7 +309,7 @@ main(int argc, char *argv[]) progname = argv[0]; for (i = 1; i < argc; ++i) if (strcmp(argv[i], "--version") == 0) { - (void) printf("%s\n", TZVERSION); + (void) printf("zdump %s%s\n", PKGVERSION, TZVERSION); exit(EXIT_SUCCESS); } else if (strcmp(argv[i], "--help") == 0) { usage(stdout, EXIT_SUCCESS); |