diff options
author | Roland McGrath <roland@gnu.org> | 2004-12-01 19:55:58 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2004-12-01 19:55:58 +0000 |
commit | 469dcb0d463740a3c15ef231ea110bf01bafbaa3 (patch) | |
tree | b444375d446c96f570112f6d94548830f722062a /time/tst-mktime2.c | |
parent | c13bc9621fabbfd687adbefab5f9c5ba13d8b14c (diff) | |
download | glibc-469dcb0d463740a3c15ef231ea110bf01bafbaa3.tar glibc-469dcb0d463740a3c15ef231ea110bf01bafbaa3.tar.gz glibc-469dcb0d463740a3c15ef231ea110bf01bafbaa3.tar.bz2 glibc-469dcb0d463740a3c15ef231ea110bf01bafbaa3.zip |
* posix/fnmatch_loop.c (internal_fnmatch): Clear is_seqval after
normal_bracket label.
* time/tst-mktime2.c (bigtime_test): Initialize tm.tm_isdst to -1.
Diffstat (limited to 'time/tst-mktime2.c')
-rw-r--r-- | time/tst-mktime2.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/time/tst-mktime2.c b/time/tst-mktime2.c index fe7c370928..6279218cba 100644 --- a/time/tst-mktime2.c +++ b/time/tst-mktime2.c @@ -78,6 +78,7 @@ bigtime_test (int j) struct tm tm; time_t now; tm.tm_year = tm.tm_mon = tm.tm_mday = tm.tm_hour = tm.tm_min = tm.tm_sec = j; + tm.tm_isdst = -1; now = mktime (&tm); if (now != (time_t) -1) { |