From: Nick Kew Date: Sat, 15 Jul 2006 08:39:41 +0000 (+0000) Subject: Use -compatible versions of ap_str* functions. X-Git-Tag: 2.3.0~2252 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a3f4adfa282980236c02f18671fca8d0b601618f;p=thirdparty%2Fapache%2Fhttpd.git Use -compatible versions of ap_str* functions. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@422178 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 7084b5fe591..26aae7fb9ab 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -424,11 +424,11 @@ static const char *proxy_interpolate(request_rec *r, const char *str) const char *val; const char *firstpart; - start = ap_strstr(str, "${"); + start = ap_strstr_c(str, "${"); if (start == NULL) { return str; } - end = ap_strchr(start+2, '}'); + end = ap_strchr_c(start+2, '}'); if (end == NULL) { return str; }