From 84566379a187dda1fe19199e0d8f4910a1a7bb62 Mon Sep 17 00:00:00 2001 From: Nikias Bassen Date: Thu, 22 May 2014 20:26:02 +0200 Subject: xplist: Handle DST-affected timezones correctly --- src/xplist.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xplist.c b/src/xplist.c index a21ae7f..d953e23 100644 --- a/src/xplist.c +++ b/src/xplist.c @@ -323,7 +323,7 @@ static void parse_date(const char *strval, struct tm *btime) btime->tm_year-=1900; btime->tm_mon--; #endif - btime->tm_isdst=-1; + btime->tm_isdst=0; } static void xml_to_node(xmlNodePtr xml_node, plist_t * plist_node) -- cgit v1.1-32-gdbae