From: Yann Ylavic Date: Fri, 3 Sep 2021 11:36:44 +0000 (+0000) Subject: mod_proxy: Follow up to r1892814. X-Git-Tag: 2.5.0-alpha2-ci-test-only~841 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f682600d98d1e3d36c99fb4b7c1c5ad2dccc16e1;p=thirdparty%2Fapache%2Fhttpd.git mod_proxy: Follow up to r1892814. Save some few cycles in ap_proxy_de_socketfy() too. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1892853 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy.c b/modules/proxy/mod_proxy.c index 9910828f453..1f5a4b6a861 100644 --- a/modules/proxy/mod_proxy.c +++ b/modules/proxy/mod_proxy.c @@ -2009,7 +2009,7 @@ PROXY_DECLARE(const char *) ap_proxy_de_socketfy(apr_pool_t *p, const char *url) * the UDS path... ignore it */ if (!ap_cstr_casecmpn(url, "unix:", 5) && - ((ptr = ap_strchr_c(url, '|')) != NULL)) { + ((ptr = ap_strchr_c(url + 5, '|')) != NULL)) { /* move past the 'unix:...|' UDS path info */ const char *ret, *c;