summaryrefslogtreecommitdiff
path: root/noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch
Side-by-side diff
Diffstat (limited to 'noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch b/noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch
deleted file mode 100644
index 45fc834..0000000
--- a/noncore/net/mail/libetpanstuff/mailmime_content.c_arm_031_patch
+++ b/dev/null
@@ -1,20 +0,0 @@
---- mailmime_content.c.orig 2003-12-16 17:45:47.000000000 +0100
-+++ mailmime_content.c 2003-12-16 17:45:55.000000000 +0100
-@@ -1549,7 +1549,7 @@
- /* ************************************************************************* */
- /* MIME part decoding */
-
--static char get_base64_value(char ch)
-+static signed char get_base64_value(char ch)
- {
- if ((ch >= 'A') && (ch <= 'Z'))
- return ch - 'A';
-@@ -1595,7 +1595,7 @@
-
- i = 0;
- while (1) {
-- char value;
-+ signed char value;
-
- value = -1;
- while (value == -1) {