summaryrefslogtreecommitdiff
path: root/net/rdist6/patches/patch-ao
diff options
context:
space:
mode:
authorchristos <christos@pkgsrc.org>2012-09-26 16:52:38 +0000
committerchristos <christos@pkgsrc.org>2012-09-26 16:52:38 +0000
commitcfb62e26b6d017eab835355b9571d970a7d3a16e (patch)
treeaf060da6c1e1f098021712d517342f4c7d390c2a /net/rdist6/patches/patch-ao
parent01561dc2d2c737caf14f9819c5f0b0dd9049fc01 (diff)
downloadpkgsrc-cfb62e26b6d017eab835355b9571d970a7d3a16e.tar.gz
update to latest freerdist-0.94:
* use intmax_t instead of long long * Don't limit the size of the environment * Don't leak a directory file descriptor * ansify * dynamically allocate EARGS * use getaddrinfo
Diffstat (limited to 'net/rdist6/patches/patch-ao')
-rw-r--r--net/rdist6/patches/patch-ao15
1 files changed, 0 insertions, 15 deletions
diff --git a/net/rdist6/patches/patch-ao b/net/rdist6/patches/patch-ao
deleted file mode 100644
index 835f638dae2..00000000000
--- a/net/rdist6/patches/patch-ao
+++ /dev/null
@@ -1,15 +0,0 @@
-$NetBSD: patch-ao,v 1.2 2010/06/12 19:36:01 dholland Exp $
-
-Print and parse time_t as intmax_t, not as long (which might not fit).
-
---- src/docmd.c.orig 2001-03-12 18:42:23.000000000 +0000
-+++ src/docmd.c
-@@ -786,7 +786,7 @@ static void dodcolon(cmd, filev)
- return;
- }
-
-- debugmsg(DM_MISC, "%s: mtime %d\n", stamp, stb.st_mtime);
-+ debugmsg(DM_MISC, "%s: mtime %jd\n", stamp, (intmax_t)stb.st_mtime);
-
- env = NULL;
- for (sc = sbcmds; sc != NULL; sc = sc->sc_next) {