TW-1492
- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
This commit is contained in:
1
AUTHORS
1
AUTHORS
@@ -113,6 +113,7 @@ The following submitted code, packages or analysis, and deserve special thanks:
|
||||
Roman Inflianskas
|
||||
Łukasz Panek
|
||||
Tomas Babej
|
||||
V.Krishn
|
||||
|
||||
Thanks to the following, who submitted detailed bug reports and excellent
|
||||
suggestions:
|
||||
|
||||
@@ -2,6 +2,7 @@
|
||||
|
||||
- TW-1486 task wait shows completed tasks which has a wait attribute (thanks to
|
||||
Sujeevan Vijayakumaran).
|
||||
- TW-1492 compiling v2.4.0 using musl(libc) (thanks to V.Krishn).
|
||||
- Fixed assorted color theme problems.
|
||||
- Changed assorted reports so they do not use '.age' format for dates that are
|
||||
in the future, because those are never shown with this format (thanks to
|
||||
|
||||
@@ -702,7 +702,7 @@ void ISO8601d::resolve ()
|
||||
t.tm_min = (seconds % 3600) / 60;
|
||||
t.tm_sec = seconds % 60;
|
||||
|
||||
_value = utc ? timegm (&t) : timelocal (&t);
|
||||
_value = utc ? timegm (&t) : mktime (&t);
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
Reference in New Issue
Block a user