Fix daylight saving time bug in timers (backport from tuxbox-cvs)

Origin commit data
------------------
Branch: ni/coolstream
Commit: 636f7cef05
Author: gixxpunk <thomas.harfmann@gmail.com>
Date: 2012-10-13 (Sat, 13 Oct 2012)

Origin message was:
------------------
- Fix daylight saving time bug in timers (backport from tuxbox-cvs)

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
gixxpunk
2012-10-13 17:10:25 +02:00
committed by Jacek Jendrzej
parent d493b1155c
commit 898f7d7cdb
3 changed files with 1 additions and 3 deletions

View File

@@ -44,6 +44,7 @@ void correctTime(struct tm *zt) {
zt->tm_hour = minmax(zt->tm_hour, 0, 23);
zt->tm_min = minmax(zt->tm_min, 0, 59);
zt->tm_sec = minmax(zt->tm_sec, 0, 59);
zt->tm_isdst = -1;
}
//=============================================================================
// Strings