From: Amos Jeffries Date: Fri, 2 Dec 2011 12:28:58 +0000 (-0700) Subject: Polish: convert one SECURITY WARNING to ALERT X-Git-Tag: SQUID_3_1_17~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=584bdbe440d5b23ceda374fdbee95b8cc70b0050;p=thirdparty%2Fsquid.git Polish: convert one SECURITY WARNING to ALERT --- diff --git a/src/url.cc b/src/url.cc index e6a855ac30..5a4204b3f1 100644 --- a/src/url.cc +++ b/src/url.cc @@ -326,7 +326,7 @@ urlParse(const HttpRequestMethod& method, char *url, HttpRequest *request) // Bug 3183 sanity check: If scheme is present, host must be too. if (protocol != PROTO_NONE && (host == NULL || *host == '\0')) { - debugs(23, DBG_IMPORTANT, "SECURITY WARNING: Missing hostname in URL '" << url << "'. see access.log for details."); + debugs(23, DBG_IMPORTANT, "SECURITY ALERT: Missing hostname in URL '" << url << "'. see access.log for details."); return NULL; }