1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-06-01 15:26:29 +02:00

(get_date): Let mktime deduce tm_isdst if we

have an absolute timestamp, or if the relative timestamp
mentions days, months, or years.
This commit is contained in:
Jim Meyering
1999-05-20 03:47:24 +00:00
parent 867c8b0e85
commit a0766fb80f
+2
View File
@@ -953,6 +953,8 @@ get_date (const char *p, const time_t *now)
tm.tm_hour += yyRelHour;
tm.tm_min += yyRelMinutes;
tm.tm_sec += yyRelSeconds;
if (yyHaveDate | yyHaveDay | yyHaveTime | yyRelDay | yyRelMonth | yyRelYear)
tm.tm_isdst = -1;
tm0 = tm;
Start = mktime (&tm);