From: Jeff Trawick Date: Fri, 18 Jan 2002 21:59:21 +0000 (+0000) Subject: fix a spelling problem X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=acdb0917f24a6b12ef85b16babe1f6e2e2b0cb6a;p=thirdparty%2Fapache%2Fhttpd.git fix a spelling problem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@92915 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/modules/proxy/mod_proxy.c b/src/modules/proxy/mod_proxy.c index ae2497cd119..d11ccbe3ad8 100644 --- a/src/modules/proxy/mod_proxy.c +++ b/src/modules/proxy/mod_proxy.c @@ -324,7 +324,7 @@ static int proxy_handler(request_rec *r) if (p == NULL) return HTTP_BAD_REQUEST; - /* Try serve the request from the cache. If we suceed, we leave. */ + /* Try serve the request from the cache. If we succeed, we leave. */ rc = ap_proxy_cache_check(r, url, &conf->cache, &cr); if (rc != DECLINED) return rc;