]> granicus.if.org Git - apache/commitdiff
In the debug log, say 'decline' instead of 'reject' when DECLINEing
authorMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 12:40:39 +0000 (12:40 +0000)
committerMartin Kraemer <martin@apache.org>
Wed, 30 Jan 2002 12:40:39 +0000 (12:40 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@93103 13f79535-47bb-0310-9956-ffa450edef68

modules/proxy/proxy_connect.c
modules/proxy/proxy_http.c

index a317fed4c7a1e05aa8050a5a852c4440d3d6e2e0..1b13efab0086218a3b35ef8422c347dc9454b93a 100644 (file)
@@ -142,7 +142,7 @@ int ap_proxy_connect_handler(request_rec *r, proxy_server_conf *conf,
     /* is this for us? */
     if (r->method_number != M_CONNECT) {
         ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
-                    "proxy: CONNECT: rejecting URL %s", url);
+                    "proxy: CONNECT: declining URL %s", url);
        return DECLINED;
     }
     ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
index e2ff34341a1ec54d9ed5522125b72e8501ffa1fa..35b2bc78b0cb795c08e60c1a3375720d26d18891 100644 (file)
@@ -971,7 +971,7 @@ int ap_proxy_http_handler(request_rec *r, proxy_server_conf *conf,
     /* is it for us? */
     if (strncasecmp(url, "http:", 5)) {
         ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,
-                     "proxy: HTTP: rejecting URL %s", url);
+                     "proxy: HTTP: declining URL %s", url);
         return DECLINED; /* only interested in HTTP */
     }
     ap_log_error(APLOG_MARK, APLOG_DEBUG|APLOG_NOERRNO, 0, r->server,