diff options
-rw-r--r-- | coreutils/date.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/coreutils/date.c b/coreutils/date.c index 6e7aa1f0c..7d14ec325 100644 --- a/coreutils/date.c +++ b/coreutils/date.c | |||
@@ -209,6 +209,7 @@ int date_main(int argc, char **argv) | |||
209 | } | 209 | } |
210 | 210 | ||
211 | /* Correct any day of week and day of year etc. fields */ | 211 | /* Correct any day of week and day of year etc. fields */ |
212 | tm_time.tm_isdst = -1; /* Be sure to recheck dst. */ | ||
212 | tm = mktime(&tm_time); | 213 | tm = mktime(&tm_time); |
213 | if (tm < 0) { | 214 | if (tm < 0) { |
214 | bb_error_msg_and_die(bb_msg_invalid_date, date_str); | 215 | bb_error_msg_and_die(bb_msg_invalid_date, date_str); |