From: Moriyoshi Koizumi Date: Thu, 24 Oct 2002 02:59:01 +0000 (+0000) Subject: Fixed build when mbstring is not used - my previous patch is insufficient. X-Git-Tag: php-4.3.0pre2~110 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e8be0db5463a033aacfaccae99211380cf91b4ac;p=php Fixed build when mbstring is not used - my previous patch is insufficient. --- diff --git a/main/rfc1867.c b/main/rfc1867.c index 5d7bd78d4e..4ce2b07147 100644 --- a/main/rfc1867.c +++ b/main/rfc1867.c @@ -520,6 +520,8 @@ static char *substring_conf(char *start, int len, char quote TSRMLS_DC) } else { *resp++ = start[i]; } +#else + *resp++ = start[i]; #endif } }