From: Amos Jeffries Date: Thu, 24 Nov 2011 07:04:58 +0000 (-0700) Subject: Polish: convert one SECURITY WARNING to ALERT X-Git-Tag: SQUID_3_2_0_14~36 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3a039cbe7bc09c6a0b0db08e5086cb98451382d1;p=thirdparty%2Fsquid.git Polish: convert one SECURITY WARNING to ALERT --- diff --git a/src/url.cc b/src/url.cc index 54b7992886..5660c53d58 100644 --- a/src/url.cc +++ b/src/url.cc @@ -327,7 +327,7 @@ urlParse(const HttpRequestMethod& method, char *url, HttpRequest *request) // Bug 3183 sanity check: If scheme is present, host must be too. if (protocol != AnyP::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; }