]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Polish: convert one SECURITY WARNING to ALERT
authorAmos Jeffries <squid3@treenet.co.nz>
Fri, 2 Dec 2011 12:28:58 +0000 (05:28 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Fri, 2 Dec 2011 12:28:58 +0000 (05:28 -0700)
src/url.cc

index e6a855ac303ffac1465b0844c4183edfeb5b36a0..5a4204b3f12b0e25d9851ae2fa2ebb89de4b91a7 100644 (file)
@@ -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;
         }