diff options
author | 2000-08-05 20:53:38 +0000 | |
---|---|---|
committer | 2000-08-05 20:53:38 +0000 | |
commit | 90d85c44fcf3a01954dd51a3cfb2c013a5e8c02c (patch) | |
tree | 95f1deb67639aaebee7212b51c8bd627c56caf20 | |
parent | Use better (working) locking macros around critical regions. Implement (diff) | |
download | wireguard-openbsd-90d85c44fcf3a01954dd51a3cfb2c013a5e8c02c.tar.xz wireguard-openbsd-90d85c44fcf3a01954dd51a3cfb2c013a5e8c02c.zip |
pretty; ok millert
-rw-r--r-- | lib/libc/time/zic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/time/zic.c b/lib/libc/time/zic.c index 5b373e86fa3..57a37c95616 100644 --- a/lib/libc/time/zic.c +++ b/lib/libc/time/zic.c @@ -1,6 +1,6 @@ #if defined(LIBC_SCCS) && !defined(lint) && !defined(NOID) static char elsieid[] = "@(#)zic.c 7.100"; -static char rcsid[] = "$OpenBSD: zic.c,v 1.13 2000/04/16 16:24:04 d Exp $"; +static char rcsid[] = "$OpenBSD: zic.c,v 1.14 2000/08/05 20:53:38 deraadt Exp $"; #endif /* LIBC_SCCS and not lint */ #include "private.h" @@ -439,7 +439,7 @@ const char * const string; static void usage P((void)) { - (void) fprintf(stderr, _("%s: usage is %s [ -s ] [ -v ] [ -l localtime ] [ -p posixrules ] [ -d directory ]\n\t[ -L leapseconds ] [ -y yearistype ] [ filename ... ]\n"), + (void) fprintf(stderr, _("%s: usage is %s [-sv] [-l localtime] [-p posixrules] [-d directory]\n\t[-L leapseconds] [-y yearistype] [filename ...]\n"), progname, progname); (void) exit(EXIT_FAILURE); } |