diff options
author | 2008-10-09 18:33:15 +0000 | |
---|---|---|
committer | 2008-10-09 18:33:15 +0000 | |
commit | 399a68444106b0e25dd1e295b6f960efa1b65bbc (patch) | |
tree | c4ff50b47d4d2bb2438e9d4aaccdc1851ec3ecc9 | |
parent | In compile_subst(), adjust for the fact that the initial buffer (diff) | |
download | wireguard-openbsd-399a68444106b0e25dd1e295b6f960efa1b65bbc.tar.xz wireguard-openbsd-399a68444106b0e25dd1e295b6f960efa1b65bbc.zip |
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) { |