summaryrefslogtreecommitdiff
path: root/time/tst-mktime2.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/tst-mktime2.c')
-rw-r--r--time/tst-mktime2.c1
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)
{