From: Amos Jeffries Date: Tue, 22 Nov 2011 23:53:50 +0000 (+1300) Subject: Polish: convert one SECURITY WARNING to ALERT X-Git-Tag: BumpSslServerFirst.take01~10 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ac89842b61a9ad09510650a07db780f1438db266;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; }