diff options
author | 2008-12-16 05:25:55 +0000 | |
---|---|---|
committer | 2008-12-16 05:25:55 +0000 | |
commit | 9dd94cc7add7e961f6b7d67e3dea8d48bfbd034c (patch) | |
tree | 6cc45d76a65ba3961f8cdaebe8f8e5b56f180fac /usr.bin/chpass/util.c | |
parent | Make the "machine xir" ddb command work on machines with uperf(4) on sbus(4). (diff) | |
download | wireguard-openbsd-9dd94cc7add7e961f6b7d67e3dea8d48bfbd034c.tar.xz wireguard-openbsd-9dd94cc7add7e961f6b7d67e3dea8d48bfbd034c.zip |
strptime() never sets tm_isdst, so set it to -1 before passing the
struct tm to mktime() so that the calculation will follow the local
DST rules
ok millert@ otto@
Diffstat (limited to 'usr.bin/chpass/util.c')
-rw-r--r-- | usr.bin/chpass/util.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/chpass/util.c b/usr.bin/chpass/util.c index d100844d8fc..bd7006510e4 100644 --- a/usr.bin/chpass/util.c +++ b/usr.bin/chpass/util.c @@ -1,4 +1,4 @@ -/* $OpenBSD: util.c,v 1.9 2008/10/09 18:33:15 chl Exp $ */ +/* $OpenBSD: util.c,v 1.10 2008/12/16 05:25:55 guenther 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.9 2008/10/09 18:33:15 chl Exp $"; +static char rcsid[] = "$OpenBSD: util.c,v 1.10 2008/12/16 05:25:55 guenther Exp $"; #endif #endif /* not lint */ @@ -80,6 +80,7 @@ atot(char *p, time_t *store) t = strptime(p, "%B %d %Y", &tm); if (t == NULL || (*t != '\0' && *t != '\n')) return 1; + tm.tm_isdst = -1; *store = mktime(&tm); if (*store == (time_t) -1) return 1; |