diff options
author | Peter Pentchev <roam@FreeBSD.org> | 2005-07-04 11:46:39 +0000 |
---|---|---|
committer | Peter Pentchev <roam@FreeBSD.org> | 2005-07-04 11:46:39 +0000 |
commit | c4dffc5e8810768a6c5cb13c23deb052a0582a77 (patch) | |
tree | 30b4c71ebb74015a61de26898eaf54632a4a906e /sysutils/safecat | |
parent | 2e1a161511f30a28a8745fab0195aac259ce944b (diff) | |
download | ports-c4dffc5e8810768a6c5cb13c23deb052a0582a77.tar.gz ports-c4dffc5e8810768a6c5cb13c23deb052a0582a77.zip |
Notes
Diffstat (limited to 'sysutils/safecat')
-rw-r--r-- | sysutils/safecat/Makefile | 2 | ||||
-rw-r--r-- | sysutils/safecat/distinfo | 3 | ||||
-rw-r--r-- | sysutils/safecat/files/patch-tempfile.c | 11 |
3 files changed, 14 insertions, 2 deletions
diff --git a/sysutils/safecat/Makefile b/sysutils/safecat/Makefile index 6cfddf80bc0f..6fb355de65bd 100644 --- a/sysutils/safecat/Makefile +++ b/sysutils/safecat/Makefile @@ -6,7 +6,7 @@ # PORTNAME= safecat -PORTVERSION= 1.11 +PORTVERSION= 1.12 CATEGORIES= sysutils mail MASTER_SITES= http://budney.homeunix.net:8080/users/budney/linux/software/safecat/ \ ${MASTER_SITE_SUNSITE} diff --git a/sysutils/safecat/distinfo b/sysutils/safecat/distinfo index 560abf421762..2a98829526f6 100644 --- a/sysutils/safecat/distinfo +++ b/sysutils/safecat/distinfo @@ -1 +1,2 @@ -MD5 (safecat-1.11.tar.gz) = d0b0f5c0bfdef3e1940d33632c8be892 +MD5 (safecat-1.12.tar.gz) = cb59b35bae57495b54220269c6a24761 +SIZE (safecat-1.12.tar.gz) = 33556 diff --git a/sysutils/safecat/files/patch-tempfile.c b/sysutils/safecat/files/patch-tempfile.c new file mode 100644 index 000000000000..27ee83c22c40 --- /dev/null +++ b/sysutils/safecat/files/patch-tempfile.c @@ -0,0 +1,11 @@ +--- tempfile.c.orig Mon Jul 4 14:43:35 2005 ++++ tempfile.c Mon Jul 4 14:43:48 2005 +@@ -26,7 +26,7 @@ + taia_tai(&now,&sec); + + /* Record the second timestamp on the string. */ +- secbuf[fmt_uint64(secbuf,(uint64) sec.x - 4611686018427387904)] = '\0'; ++ secbuf[fmt_uint64(secbuf,(uint64) sec.x - 4611686018427387904ULL)] = '\0'; + if (!stralloc_cats(tmpf, secbuf)) die_nomem(); + + /* Append the microsecond timestamp to the string. */ |