diff options
author | dmcmahill <dmcmahill> | 2001-04-18 19:01:55 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2001-04-18 19:01:55 +0000 |
commit | c46a468f1f6ed7623461e0aebad7094419b71d53 (patch) | |
tree | 4a66364c769e63b1a977ae036247c2e25124617f /net/pchar/patches | |
parent | ced8f791b51a98eeed070a312e11d0df9de373a7 (diff) | |
download | pkgsrc-c46a468f1f6ed7623461e0aebad7094419b71d53.tar.gz |
fix on alpha.
while here add the size to distinfo
Diffstat (limited to 'net/pchar/patches')
-rw-r--r-- | net/pchar/patches/patch-aa | 15 |
1 files changed, 15 insertions, 0 deletions
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))); + } + |