util.datetime: Fix timestamp parsing when in DST (thanks xnyhps)

This commit is contained in:
Matthew Wild 2011-04-15 22:39:53 +01:00
parent 0257b8e30c
commit 4ff48cecfd

View file

@ -49,7 +49,7 @@ function parse(s)
if sign == "-" then tzd_offset = -tzd_offset; end if sign == "-" then tzd_offset = -tzd_offset; end
end end
sec = (sec + time_offset) - tzd_offset; sec = (sec + time_offset) - tzd_offset;
return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec}); return os_time({year=year, month=month, day=day, hour=hour, min=min, sec=sec, isdst=false});
end end
end end
end end