pkgsrc/net/icsi-finger/patches/patch-an
is 3fd6156fce Missed part of the fix for 64bit time_t from 2011/01/18 12:28:25.
The maintainance program packet2ascii (actually, the ascii2packet part)
needed to be fixed, too.
2011-11-10 09:42:22 +00:00

13 lines
307 B
Text

$NetBSD: patch-an,v 1.1 2011/11/10 09:42:22 is Exp $
--- src/packet2ascii.c.orig 1994-01-11 02:14:49.000000000 +0000
+++ src/packet2ascii.c
@@ -101,7 +101,7 @@ char *
parse_time(line, sep, buffer, lineno, name)
char *line;
char sep;
- time_t *buffer;
+ int32_t *buffer;
int lineno;
char *name;
{