From: Wilfried Goesgens Date: Thu, 18 Aug 2011 09:53:01 +0000 (+0000) Subject: fix QP encoding X-Git-Tag: v8.11~1016 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=8aa47cfb3f272cfbd7715d0131c9c13a62d4c473 fix QP encoding - once we decided to QP encode we also need to encode = (forgotten in last commit) --- 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 == ']') ) {