From 6dd580a163f9c8eb774ca54a04406ae51954cef2 Mon Sep 17 00:00:00 2001 From: Jim Jagielski Date: Tue, 8 Oct 2013 17:21:27 +0000 Subject: [PATCH] Add no's git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1530361 13f79535-47bb-0310-9956-ffa450edef68 --- docs/log-message-tags/next-number | 2 +- modules/proxy/mod_proxy_wstunnel.c | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/log-message-tags/next-number b/docs/log-message-tags/next-number index 0f15786740..3d7115d35f 100644 --- a/docs/log-message-tags/next-number +++ b/docs/log-message-tags/next-number @@ -1 +1 @@ -2542 +2545 diff --git a/modules/proxy/mod_proxy_wstunnel.c b/modules/proxy/mod_proxy_wstunnel.c index 66151c17b0..97967fc670 100644 --- a/modules/proxy/mod_proxy_wstunnel.c +++ b/modules/proxy/mod_proxy_wstunnel.c @@ -55,7 +55,7 @@ static int proxy_wstunnel_pump(ws_baton_t *baton, apr_time_t timeout) { continue; } else if (APR_STATUS_IS_TIMEUP(rv)) { - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "Attempting to go asynch"); + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02542) "Attempting to go asynch"); return SUSPENDED; } else { @@ -375,12 +375,12 @@ static int ap_proxy_wstunnel_request(apr_pool_t *p, request_rec *r, return SUSPENDED; } else if (status == APR_ENOTIMPL) { - ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, "No asynch support"); + ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02544) "No asynch support"); status = proxy_wstunnel_pump(baton, -1); } else { ap_log_rerror(APLOG_MARK, APLOG_ERR, status, r, - "error creating websockets tunnel"); + APLOGNO(02543) "error creating websockets tunnel"); return HTTP_INTERNAL_SERVER_ERROR; } } -- 2.40.0