summaryrefslogtreecommitdiff
path: root/mail/postfix-current/patches/patch-ba
blob: 10eba92a0322848ac8f113bac838021195bc5437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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, '"');