summaryrefslogtreecommitdiff
path: root/net/icsi-finger/patches/patch-al
blob: 5cc603c36ea90df685033c597ccd4916b56ff334 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$NetBSD: patch-al,v 1.1 2011/01/18 12:28:25 is Exp $

--- lib/os.c.orig	1996-07-18 23:31:32.000000000 +0000
+++ lib/os.c
@@ -1137,3 +1137,15 @@ same_hostip (host1, host2)
     return (addr1 == addr2);
 }
 
+/* a ctime() replacement that reads a 32bit timestamp, even when
+   time_t has a different size. */
+
+char *
+ctime32(tp)
+	int32_t *tp;
+{
+	time_t thetime = *tp;
+
+	return ctime(&thetime);
+}
+