summaryrefslogtreecommitdiff
path: root/src/libstddjb/localtm_from_ltm64.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libstddjb/localtm_from_ltm64.c')
-rw-r--r--src/libstddjb/localtm_from_ltm64.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libstddjb/localtm_from_ltm64.c b/src/libstddjb/localtm_from_ltm64.c
index 76703da..a115cdc 100644
--- a/src/libstddjb/localtm_from_ltm64.c
+++ b/src/libstddjb/localtm_from_ltm64.c
@@ -12,7 +12,7 @@
#include <skalibs/tai.h>
#include <skalibs/djbtime.h>
-int localtm_from_ltm64 (struct tm *l, uint64_t uu, int tz)
+int localtm_from_ltm64 (struct tm *l, uint64_t uu, int tzh)
{
if (uu < TAI_MAGIC) return (errno = EINVAL, 0) ;
uu -= TAI_MAGIC ;
@@ -21,7 +21,8 @@ int localtm_from_ltm64 (struct tm *l, uint64_t uu, int tz)
#endif
{
time_t u = (time_t)uu ;
- if (tz ? !localtime_r(&u, l) : !gmtime_r(&u, l)) return 0 ;
+ if (tzh & 1 ? !localtime_r(&u, l) : !gmtime_r(&u, l)) return 0 ;
}
+ if (tzh & 2) l->tm_sec++ ;
return 1 ;
}