From 8aa47cfb3f272cfbd7715d0131c9c13a62d4c473 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Thu, 18 Aug 2011 09:53:01 +0000 Subject: [PATCH] fix QP encoding - once we decided to QP encode we also need to encode = (forgotten in last commit) --- libcitadel/lib/stringbuf.c | 1 + 1 file changed, 1 insertion(+) diff --git a/libcitadel/lib/stringbuf.c b/libcitadel/lib/stringbuf.c index cdb625cc9..1914190bb 100644 --- a/libcitadel/lib/stringbuf.c +++ b/libcitadel/lib/stringbuf.c @@ -2566,6 +2566,7 @@ int StrBufRFC2047encode(StrBuf **target, const StrBuf *source) if ((ch < 32) || (ch > 126) || (ch == 61) || + (ch == '=') || (ch == '[') || (ch == ']') ) { -- 2.30.2