]> granicus.if.org Git - php/commitdiff
Removed redundant (and incorrect) '0' from "begin" string for uudecode.
authorWez Furlong <wez@php.net>
Sun, 13 May 2001 12:04:37 +0000 (12:04 +0000)
committerWez Furlong <wez@php.net>
Sun, 13 May 2001 12:04:37 +0000 (12:04 +0000)
ext/mbstring/mbfilter.c

index a952216f57236aab78fc933a616a03356de87d1e..a98887130e142f879af02c7954eadcd064f687a1 100644 (file)
@@ -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,