summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2002-10-24 02:59:01 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2002-10-24 02:59:01 +0000
commite8be0db5463a033aacfaccae99211380cf91b4ac (patch)
tree05a7da17c7282bd661290a217f94cec70e5efefa
parent73ca375f3785ccd45815e9aa73a2ddf42822db7c (diff)
downloadphp-git-e8be0db5463a033aacfaccae99211380cf91b4ac.tar.gz
Fixed build when mbstring is not used - my previous patch is insufficient.
-rw-r--r--main/rfc1867.c2
1 files changed, 2 insertions, 0 deletions
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
}
}