From: Wez Furlong Date: Sat, 12 May 2001 23:49:29 +0000 (+0000) Subject: Took out a line that might cause problems if you try and uuencode; there is no X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~450 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2633261cc38c0ead9261e28d01fae802fc273dc8;p=php Took out a line that might cause problems if you try and uuencode; there is no uuencode support yet. # Looks hard to do too; we need to buffer 45 chars --- diff --git a/ext/mbstring/mbfilter.c b/ext/mbstring/mbfilter.c index 1cf90c323e..a952216f57 100644 --- a/ext/mbstring/mbfilter.c +++ b/ext/mbstring/mbfilter.c @@ -1,4 +1,6 @@ -/* charset=UTF-8 */ +/* charset=UTF-8 + * vim: encoding=utf-8: + * */ /* * "streamable kanji code filter and converter" @@ -5312,7 +5314,6 @@ mbfl_convert_filter_get_vtbl(enum mbfl_no_encoding from, enum mbfl_no_encoding t if (to == mbfl_no_encoding_base64 || to == mbfl_no_encoding_qprint || - to == mbfl_no_encoding_uuencode || to == mbfl_no_encoding_7bit) { from = mbfl_no_encoding_8bit; } else if (from == mbfl_no_encoding_base64 ||