summaryrefslogtreecommitdiff
path: root/mail/postfix/patches
diff options
context:
space:
mode:
authormartti <martti@pkgsrc.org>2005-11-16 06:53:13 +0000
committermartti <martti@pkgsrc.org>2005-11-16 06:53:13 +0000
commita5e5c62cae99c9d59b808d27d26f24b4ceb222b3 (patch)
tree07636ae51642413c06e060758354d96303ff4ff8 /mail/postfix/patches
parentb3b0eb47515d0e74e5e4d0d85bfd92c8968b77d2 (diff)
downloadpkgsrc-a5e5c62cae99c9d59b808d27d26f24b4ceb222b3.tar.gz
Removed patch-ac as it was no longer needed (and in fact should not
be used) according to Wietse Venema. PKGREVISION++
Diffstat (limited to 'mail/postfix/patches')
-rw-r--r--mail/postfix/patches/patch-ac27
1 files changed, 0 insertions, 27 deletions
diff --git a/mail/postfix/patches/patch-ac b/mail/postfix/patches/patch-ac
deleted file mode 100644
index af6fd559fb3..00000000000
--- a/mail/postfix/patches/patch-ac
+++ /dev/null
@@ -1,27 +0,0 @@
-$NetBSD: patch-ac,v 1.11 2005/03/22 10:43:50 cjs Exp $
-
-See http://archives.neohapsis.com/archives/postfix/2004-08/1114.html
-and the preceding thread. Fixes "smtp killed by signal 11" problems.
-
---- src/util/vstream.c.old 2005-03-22 19:04:49.000000000 +0900
-+++ src/util/vstream.c 2005-03-22 19:05:26.000000000 +0900
-@@ -926,6 +926,10 @@
- * policies. Either this, or the vstream*open() routines would have to
- * have a really ugly interface with lots of mostly-unused arguments (can
- * you say VMS?).
-+ *
-+ * Initialize the I/O time (as documented) so that a time sensitive, "write
-+ * before read" application does not force flush the first data written
-+ * to a stream, potentially triggering NAGLE delays or other trouble.
- */
- stream = (VSTREAM *) mymalloc(sizeof(*stream));
- stream->fd = fd;
-@@ -939,7 +943,7 @@
- stream->timeout = 0;
- stream->context = 0;
- stream->jbuf = 0;
-- stream->iotime = 0;
-+ stream->iotime = time((time_t *) 0); /* as documented */;
- return (stream);
- }
-