summaryrefslogtreecommitdiff
path: root/libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff
diff options
context:
space:
mode:
Diffstat (limited to 'libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff')
-rw-r--r--libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff11
1 files changed, 0 insertions, 11 deletions
diff --git a/libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff b/libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff
deleted file mode 100644
index 76a5f4eafc..0000000000
--- a/libraries/libvmime-zarafa/zarafa-patches/vmime-quoted-printable-encode-questionmark.diff
+++ /dev/null
@@ -1,11 +0,0 @@
---- libvmime-0.7.1.orig/src/encoderQP.cpp 2008-03-10 13:57:05.055163691 +0100
-+++ libvmime-0.7.1.patched/src/encoderQP.cpp 2008-03-10 13:51:53.071163435 +0100
-@@ -249,7 +249,7 @@
- default:
- {
- //if ((c >= 33 && c <= 60) || (c >= 62 && c <= 126))
-- if (c >= 33 && c <= 126 && c != 61)
-+ if (c >= 33 && c <= 126 && c != 61 && c!= 63)
- {
- outBuffer[outBufferPos++] = c;
- ++curCol;