diff --git a/src/epggrab/pyepg.c b/src/epggrab/pyepg.c index 5fc95e82..2891dc9b 100644 --- a/src/epggrab/pyepg.c +++ b/src/epggrab/pyepg.c @@ -21,6 +21,7 @@ static int _pyepg_parse_time ( const char *str, time_t *out ) { int ret = 0; struct tm tm; + tm.tm_isdst = 0; if ( strptime(str, "%F %T %z", &tm) != NULL ) { *out = mktime(&tm); ret = 1;