summaryrefslogtreecommitdiff
path: root/src/tpl-time.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tpl-time.c')
-rw-r--r--src/tpl-time.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/tpl-time.c b/src/tpl-time.c
index e35c6c8..a9ab267 100644
--- a/src/tpl-time.c
+++ b/src/tpl-time.c
@@ -45,8 +45,7 @@ tpl_time_get_local_time (struct tm *tm)
tz = g_getenv ("TZ");
g_setenv ("TZ", "", TRUE);
- //TODO reenable
- //tzset ();
+ tzset ();
t = mktime (tm);
@@ -56,8 +55,7 @@ tpl_time_get_local_time (struct tm *tm)
g_unsetenv ("TZ");
}
- //TODO reenable
- //tzset ();
+ tzset ();
return t;
}