You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by fu...@apache.org on 2012/09/18 03:39:57 UTC

svn commit: r1386952 - /httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c

Author: fuankg
Date: Tue Sep 18 01:39:57 2012
New Revision: 1386952

URL: http://svn.apache.org/viewvc?rev=1386952&view=rev
Log:
proxy_connect_handler: fix use of APLOGNO() (backport r1375407).
Submitted by: jorton
Reviewed/backported by: sf, fuankg


Modified:
    httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c

Modified: httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c?rev=1386952&r1=1386951&r2=1386952&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c (original)
+++ httpd/httpd/branches/2.4.x/modules/proxy/mod_proxy_connect.c Tue Sep 18 01:39:57 2012
@@ -254,7 +254,7 @@ static int proxy_connect_handler(request
     rv = apr_sockaddr_info_get(&nexthop, connectname, APR_UNSPEC, 
                                connectport, 0, p);
     if (rv != APR_SUCCESS) {
-        ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO()
+        ap_log_rerror(APLOG_MARK, APLOG_ERR, rv, r, APLOGNO(02327)
                       "failed to resolve hostname '%s'", connectname);
         return ap_proxyerror(r, HTTP_BAD_GATEWAY,
                              apr_pstrcat(p, "DNS lookup failure for: ",