diff options
author | wollman <wollman@FreeBSD.org> | 1999-01-21 21:09:56 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1999-01-21 21:09:56 +0000 |
commit | 8092b8911122a53a6f82142874a09c4582847b62 (patch) | |
tree | 7da4d2ed17d71f91a8ba29bf390f1a53b5ca1cf2 /usr.sbin/zic | |
parent | f589f95929167d814bd9d862388ac1fabb621e44 (diff) | |
download | FreeBSD-src-8092b8911122a53a6f82142874a09c4582847b62.zip FreeBSD-src-8092b8911122a53a6f82142874a09c4582847b62.tar.gz |
I don't know how this happened since I know I compiled this on my machine.
Fix braino oflag -> uflag (or perhaps I should have gone the other way).
Diffstat (limited to 'usr.sbin/zic')
-rw-r--r-- | usr.sbin/zic/zic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/zic/zic.c b/usr.sbin/zic/zic.c index 95706e2..c8f503b 100644 --- a/usr.sbin/zic/zic.c +++ b/usr.sbin/zic/zic.c @@ -6,7 +6,7 @@ static char elsieid[] = "@(#)zic.c 7.96"; #ifndef lint static const char rcsid[] = - "$Id: zic.c,v 1.8 1999/01/21 17:12:49 wollman Exp $"; + "$Id: zic.c,v 1.8 1999/01/21 17:46:19 wollman Exp $"; #endif /* not lint */ #include "private.h" @@ -449,7 +449,7 @@ static const char * leapsec; static const char * yitcommand; static int sflag = FALSE; static int Dflag; -static uid_t oflag = (uid_t)-1; +static uid_t uflag = (uid_t)-1; static gid_t gflag = (gid_t)-1; static mode_t mflag = (S_IRUSR | S_IRGRP | S_IROTH | S_IWUSR); |