diff options
Diffstat (limited to 'net/pchar')
-rw-r--r-- | net/pchar/distinfo | 6 | ||||
-rw-r--r-- | net/pchar/patches/patch-aa | 15 |
2 files changed, 19 insertions, 2 deletions
diff --git a/net/pchar/distinfo b/net/pchar/distinfo index 984dcff4d98..8978b2815e2 100644 --- a/net/pchar/distinfo +++ b/net/pchar/distinfo @@ -1,3 +1,5 @@ -$NetBSD: distinfo,v 1.1 2001/04/17 11:52:48 agc Exp $ +$NetBSD: distinfo,v 1.2 2001/04/18 19:01:55 dmcmahill Exp $ -MD5 (pchar-1.3.2.tar.gz) = 7edce7ee4a363cd3ae0657262bbbdbeb +SHA1 (pchar-1.3.2.tar.gz) = 852b095df51731e1192686e1dbf17902d198bca4 +Size (pchar-1.3.2.tar.gz) = 107791 bytes +SHA1 (patch-aa) = 36daaf5b820679e118c222af608de6146d7ec165 diff --git a/net/pchar/patches/patch-aa b/net/pchar/patches/patch-aa new file mode 100644 index 00000000000..ed16ae2cdbc --- /dev/null +++ b/net/pchar/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.5 2001/04/18 19:01:56 dmcmahill Exp $ + +needed on alpha, sparc64. + +--- main.cc.orig Tue Apr 3 15:41:35 2001 ++++ main.cc Wed Apr 18 14:55:48 2001 +@@ -1413,6 +1413,6 @@ + } + +- fprintf(stdout, " Start time: %s", ctime(&(timeFirst.tv_sec))); +- fprintf(stdout, " End time: %s", ctime(&(timeLast.tv_sec))); ++ fprintf(stdout, " Start time: %s", ctime((time_t *) &(timeFirst.tv_sec))); ++ fprintf(stdout, " End time: %s", ctime((time_t *) &(timeLast.tv_sec))); + } + |