summaryrefslogtreecommitdiff
path: root/mail/postfix-current/patches/patch-ba
diff options
context:
space:
mode:
Diffstat (limited to 'mail/postfix-current/patches/patch-ba')
-rw-r--r--mail/postfix-current/patches/patch-ba23
1 files changed, 23 insertions, 0 deletions
diff --git a/mail/postfix-current/patches/patch-ba b/mail/postfix-current/patches/patch-ba
new file mode 100644
index 00000000000..10eba92a032
--- /dev/null
+++ b/mail/postfix-current/patches/patch-ba
@@ -0,0 +1,23 @@
+$NetBSD: patch-ba,v 1.3 2001/03/18 14:02:01 itojun Exp $
+
+fix sprious \ in mail header.
+
+Message-Id: <20010313174719.35692BC070@spike.porcupine.org>
+Subject: PATCH (spurious \ in mail header)
+From: wietse@porcupine.org (Wietse Venema)
+To: Postfix users <postfix-users@postfix.org>
+Date: Tue, 13 Mar 2001 12:47:19 -0500 (EST)
+
+Index: src/global/tok822_parse.c
+diff -u -r1.1 -r1.2
+--- src/global/tok822_parse.c 2001/03/13 17:47:13 1.1
++++ src/global/tok822_parse.c 2001/03/16 11:57:53 1.2
+@@ -252,7 +252,7 @@
+ VSTRING_ADDCH(vp, ')');
+ break;
+ case TOK822_COMMENT_TEXT:
+- tok822_copy_quoted(vp, vstring_str(tp->vstr), "()\\\r\n");
++ tok822_copy_quoted(vp, vstring_str(tp->vstr), "()\\");
+ break;
+ case TOK822_QSTRING:
+ VSTRING_ADDCH(vp, '"');