From: Wilfried Goesgens Date: Thu, 18 Aug 2011 09:53:01 +0000 (+0000) Subject: fix QP encoding X-Git-Tag: v7.87~11 X-Git-Url: https://code.citadel.org/?p=citadel.git;a=commitdiff_plain;h=5c55e3d7df8b9bb344927ae1987e201d2119d73b 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 114b453e4..ab6d523e9 100644 --- a/libcitadel/lib/stringbuf.c +++ b/libcitadel/lib/stringbuf.c @@ -2437,6 +2437,7 @@ int StrBufRFC2047encode(StrBuf **target, const StrBuf *source) if ((ch < 32) || (ch > 126) || (ch == 61) || + (ch == '=') || (ch == '[') || (ch == ']') ) {