]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polish: convert one SECURITY WARNING to ALERT
authorAmos Jeffries <squid3@treenet.co.nz>
Thu, 24 Nov 2011 07:04:58 +0000 (00:04 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Thu, 24 Nov 2011 07:04:58 +0000 (00:04 -0700)
src/url.cc

index 54b7992886e78c977b032d424b38650a2886d867..5660c53d58eb0dd54256b53d20dab0d759e1155b 100644 (file)
@@ -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;
         }