summaryrefslogtreecommitdiff
path: root/net
diff options
context:
space:
mode:
authoris <is@pkgsrc.org>2011-11-10 09:42:22 +0000
committeris <is@pkgsrc.org>2011-11-10 09:42:22 +0000
commit3fd6156fce19c52db98c562f7e64d3d7e507c59f (patch)
tree666cc18e6653893db9869263f797a7b2ebd75018 /net
parent4a2095b21cf149b77b9f248ad0d0139a357d1a86 (diff)
downloadpkgsrc-3fd6156fce19c52db98c562f7e64d3d7e507c59f.tar.gz
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.
Diffstat (limited to 'net')
-rw-r--r--net/icsi-finger/distinfo3
-rw-r--r--net/icsi-finger/patches/patch-an13
2 files changed, 15 insertions, 1 deletions
diff --git a/net/icsi-finger/distinfo b/net/icsi-finger/distinfo
index 7e5405f7de4..be59fc8dd0a 100644
--- a/net/icsi-finger/distinfo
+++ b/net/icsi-finger/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.9 2011/02/11 17:16:03 is Exp $
+$NetBSD: distinfo,v 1.10 2011/11/10 09:42:22 is Exp $
SHA1 (icsi-finger-1.0.27.tar.Z) = 41f03c42269a402169000a6b08ba8c6330256861
RMD160 (icsi-finger-1.0.27.tar.Z) = 92839362b6d4b1893958ca0909654f070e734aa4
@@ -15,3 +15,4 @@ SHA1 (patch-aj) = 53adee387e703fcff2b8f5dba4ae593712acb2ad
SHA1 (patch-ak) = 8e9bd7da344e082deb0e51301e124a2b7f8025fe
SHA1 (patch-al) = 28e8762269e94dec2e1b306527c2613b8a86d76d
SHA1 (patch-am) = 50b7cc7eaa30eaab2a26a849a875322c5344a74a
+SHA1 (patch-an) = c5e4a49e7abd2b14513be38d3d06280117730e09
diff --git a/net/icsi-finger/patches/patch-an b/net/icsi-finger/patches/patch-an
new file mode 100644
index 00000000000..b8e9b86e347
--- /dev/null
+++ b/net/icsi-finger/patches/patch-an
@@ -0,0 +1,13 @@
+$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;
+ {