From: Adam Sutton Date: Mon, 21 May 2012 11:28:52 +0000 (+0100) Subject: Fix stupid time parsing error. X-Git-Tag: 3.3~428 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1f3eada50cfd97c306c6bb58689e706ccf90be84;p=thirdparty%2Ftvheadend.git Fix stupid time parsing error. --- diff --git a/src/epggrab/pyepg.c b/src/epggrab/pyepg.c index 5fc95e82d..2891dc9b8 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;