]> git.sesse.net Git - vlc/commitdiff
backport 11496
authorAntoine Cellerier <dionoea@videolan.org>
Wed, 22 Jun 2005 16:43:05 +0000 (16:43 +0000)
committerAntoine Cellerier <dionoea@videolan.org>
Wed, 22 Jun 2005 16:43:05 +0000 (16:43 +0000)
src/misc/vlm.c

index 260602011fec5a55fb3bcd32cc1a88b67094d5ca..9e9abeaaac5fa615ab2c603e89588c6626b868d4 100644 (file)
@@ -1348,7 +1348,7 @@ int vlm_ScheduleSetup( vlm_schedule_t *schedule, char *psz_cmd,
         time.tm_year = 0;        /* year */
         time.tm_wday = 0;        /* day of the week */
         time.tm_yday = 0;        /* day in the year */
-        time.tm_isdst = 0;       /* daylight saving time */
+        time.tm_isdst = -1;       /* daylight saving time */
 
         /* date should be year/month/day-hour:minutes:seconds */
         p = strchr( psz_value, '-' );
@@ -1426,7 +1426,7 @@ int vlm_ScheduleSetup( vlm_schedule_t *schedule, char *psz_cmd,
         time.tm_year = 0;        /* year */
         time.tm_wday = 0;        /* day of the week */
         time.tm_yday = 0;        /* day in the year */
-        time.tm_isdst = 0;       /* daylight saving time */
+        time.tm_isdst = -1;       /* daylight saving time */
 
         /* date should be year/month/day-hour:minutes:seconds */
         p = strchr( psz_value, '-' );