diff options
author | Charles Longeau <chl@cvs.openbsd.org> | 2008-10-09 18:33:16 +0000 |
---|---|---|
committer | Charles Longeau <chl@cvs.openbsd.org> | 2008-10-09 18:33:16 +0000 |
commit | 9c142614c7446d06aca7a0be74498e8816b00e7c (patch) | |
tree | 08ec982c946f14062e839471d2bb1b4a19ca0917 | |
parent | 3bbbc6c516cdd3ad6089b50d0c285630171e4448 (diff) |
remove unused variable
ok millert@ jsing@
-rw-r--r-- | usr.bin/chpass/util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/chpass/util.c b/usr.bin/chpass/util.c index 6328a3fb8df..d100844d8fc 100644 --- a/usr.bin/chpass/util.c +++ b/usr.bin/chpass/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.8 2008/06/19 19:16:04 tobias Exp $ */ +/* $OpenBSD: util.c,v 1.9 2008/10/09 18:33:15 chl Exp $ */ /* $NetBSD: util.c,v 1.4 1995/03/26 04:55:35 glass Exp $ */ /*- @@ -34,7 +34,7 @@ #if 0 static char sccsid[] = "@(#)util.c 8.4 (Berkeley) 4/2/94"; #else -static char rcsid[] = "$OpenBSD: util.c,v 1.8 2008/06/19 19:16:04 tobias Exp $"; +static char rcsid[] = "$OpenBSD: util.c,v 1.9 2008/10/09 18:33:15 chl Exp $"; #endif #endif /* not lint */ @@ -68,7 +68,6 @@ int atot(char *p, time_t *store) { struct tm tm; - time_t tval; char *t; if (!*p) { |