summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/bsd-misc.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@dtucker.net>2019-10-29 19:45:03 +1100
committerDarren Tucker <dtucker@dtucker.net>2019-10-29 20:48:46 +1100
commit1bcd1169c5221688418fa38606e9c69055b72451 (patch)
tree61a589dff15dc626b876bb51f532320c7ee79a9e /openbsd-compat/bsd-misc.c
parent2046ed16c1202431b0307674c33a123a113e8297 (diff)
Add implementation of localtime_r.
Diffstat (limited to 'openbsd-compat/bsd-misc.c')
-rw-r--r--openbsd-compat/bsd-misc.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 7a26ee40..829e0c07 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -426,3 +426,13 @@ int _ssh_compat_fflush(FILE *f)
return fflush(f);
}
#endif
+
+#ifndef HAVE_LOCALTIME_R
+struct tm *
+localtime_r(const time_t *timep, struct tm *result)
+{
+ struct tm *tm = localtime(timep);
+ *result = *tm;
+ return result;
+}
+#endif