From: Wez Furlong Date: Sun, 13 May 2001 12:04:37 +0000 (+0000) Subject: Removed redundant (and incorrect) '0' from "begin" string for uudecode. X-Git-Tag: PRE_GRANULAR_GARBAGE_FIX~444 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=74ce7ee6c586f5ccf46c32ba3996c24a1fdbe066;p=php Removed redundant (and incorrect) '0' from "begin" string for uudecode. --- diff --git a/ext/mbstring/mbfilter.c b/ext/mbstring/mbfilter.c index a952216f57..a98887130e 100644 --- a/ext/mbstring/mbfilter.c +++ b/ext/mbstring/mbfilter.c @@ -2504,7 +2504,7 @@ mbfl_filt_conv_wchar_byte4le(int c, mbfl_convert_filter *filter) /* uuencode => any */ #define UUDEC(c) (char)(((c)-' ')&077) -static const char * uuenc_begin_text = "begin 0"; +static const char * uuenc_begin_text = "begin "; enum { uudec_state_ground=0, uudec_state_inbegin, uudec_state_until_newline, uudec_state_size, uudec_state_a, uudec_state_b, uudec_state_c, uudec_state_d,