From: Jeff Trawick Date: Tue, 17 Sep 2013 12:51:08 +0000 (+0000) Subject: fill in missing message numbers in APLOGNO() invocations X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=583ed220ed97a6968d613160b61aa883afa767d2;p=thirdparty%2Fapache%2Fhttpd.git fill in missing message numbers in APLOGNO() invocations git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1524018 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index 2c7a84e8e4d..6a5bdca5ee1 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -2534 +2536 diff --git a/modules/proxy/mod_proxy_ajp.c b/modules/proxy/mod_proxy_ajp.c index 6fdc6d7068f..e4cccdacde1 100644 --- a/modules/proxy/mod_proxy_ajp.c +++ b/modules/proxy/mod_proxy_ajp.c @@ -762,7 +762,7 @@ static int proxy_ajp_handler(request_rec *r, proxy_worker *worker, if (worker->s->ping_timeout < 0) { if (!ap_proxy_is_socket_connected(backend->sock)) { backend->close = 1; - ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, APLOGNO(02534) "socket check failed to %pI (%s)", worker->cp->addr, worker->s->hostname); status = HTTP_SERVICE_UNAVAILABLE; diff --git a/modules/proxy/mod_proxy_http.c b/modules/proxy/mod_proxy_http.c index e7f7dd23204..f22018addd7 100644 --- a/modules/proxy/mod_proxy_http.c +++ b/modules/proxy/mod_proxy_http.c @@ -1979,7 +1979,7 @@ static int proxy_http_handler(request_rec *r, proxy_worker *worker, if (worker->s->ping_timeout_set && worker->s->ping_timeout < 0 && !ap_proxy_is_socket_connected(backend->sock)) { backend->close = 1; - ap_log_rerror(APLOG_MARK, APLOG_INFO, status, r, APLOGNO() + ap_log_rerror(APLOG_MARK, APLOG_INFO, status, r, APLOGNO(02535) "socket check failed to %pI (%s)", worker->cp->addr, worker->s->hostname); retry++;