Fixed build when mbstring is not used - my previous patch is insufficient.

This commit is contained in:
Moriyoshi Koizumi 2002-10-24 02:59:01 +00:00
parent 73ca375f37
commit e8be0db546

View file

@ -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
}
}