]> git.ipfire.org Git - thirdparty/tvheadend.git/commitdiff
Fix stupid time parsing error.
authorAdam Sutton <dev@adamsutton.me.uk>
Mon, 21 May 2012 11:28:52 +0000 (12:28 +0100)
committerAdam Sutton <dev@adamsutton.me.uk>
Mon, 30 Jul 2012 14:46:24 +0000 (15:46 +0100)
src/epggrab/pyepg.c

index 5fc95e82dc5e81d5d84037d81f9033846534a419..2891dc9b836eb929218aa75efb956cff5b96dd44 100644 (file)
@@ -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;