From: Eric Covener Date: Tue, 10 Jan 2017 13:20:26 +0000 (+0000) Subject: followup to r1776285 X-Git-Tag: 2.5.0-alpha~795 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3dac6889c27acbe19ee435f502426e45452a5436;p=thirdparty%2Fapache%2Fhttpd.git followup to r1776285 backwards per rpluem git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1778117 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/proxy/mod_proxy_wstunnel.c b/modules/proxy/mod_proxy_wstunnel.c index fbdb48060c9..c94c082d615 100644 --- a/modules/proxy/mod_proxy_wstunnel.c +++ b/modules/proxy/mod_proxy_wstunnel.c @@ -468,7 +468,7 @@ static int proxy_wstunnel_handler(request_rec *r, proxy_worker *worker, if (!upgrade || ap_cstr_casecmp(upgrade, "WebSocket") != 0) { ap_log_rerror(APLOG_MARK, APLOG_DEBUG, 0, r, APLOGNO(02900) "declining URL %s (not WebSocket, Upgrade: header is %s)", - url, upgrade ? "missing" : upgrade); + url, upgrade ? upgrade : "missing"); return DECLINED; }