]> granicus.if.org Git - apache/commitdiff
*) mod_auth_digest: Reduce severity from NOTICE to DEBUG this
authorJim Jagielski <jim@apache.org>
Mon, 9 Jan 2017 21:16:20 +0000 (21:16 +0000)
committerJim Jagielski <jim@apache.org>
Mon, 9 Jan 2017 21:16:20 +0000 (21:16 +0000)
      once-per-restart msg (I guess the concern was that the RNG
          could block after this message)
                AH01757: generating secret for digest authentication ...
                    trunk patch: This was fixed in trunk as a trivial part of http://svn.apache.org/r1492395
                        2.4.x patch: Just change the loglevel to DEBUG.
                            +1: covener, jim, wrowe

Submitted by: covener
Reviewed by: covener, jim, wrowe

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1778051 13f79535-47bb-0310-9956-ffa450edef68

STATUS
modules/aaa/mod_auth_digest.c

diff --git a/STATUS b/STATUS
index 291ba16752d229bfb176704501ff58dd10a01ee4..855e659d6472831164df2ede1a4b07c5b8b86703 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -119,14 +119,6 @@ RELEASE SHOWSTOPPERS:
 PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
   [ start all new proposals below, under PATCHES PROPOSED. ]
 
-  *) mod_auth_digest: Reduce severity from NOTICE to DEBUG this 
-    once-per-restart msg (I guess the concern was that the RNG
-    could block after this message)
-      AH01757: generating secret for digest authentication ...
-    trunk patch: This was fixed in trunk as a trivial part of http://svn.apache.org/r1492395
-    2.4.x patch: Just change the loglevel to DEBUG.
-    +1: covener, jim, wrowe
-
   *) http: allow folding in check_headers(), still compliant with RFC 7230 (3.2.4).
      trunk patch: http://svn.apache.org/r1777460
                   http://svn.apache.org/r1777672
index 6a50ba7591ab97023f8537eea2e8667d9d883b2b..117caa19b8f4ce1b236539f4a6432ef7b672be04 100644 (file)
@@ -18,7 +18,7 @@
  * mod_auth_digest: MD5 digest authentication
  *
  * Originally by Alexei Kosut <akosut@nueva.pvt.k12.ca.us>
- * Updated to RFC-2617 by Ronald Tschalär <ronald@innovation.ch>
+ * Updated to RFC-2617 by Ronald Tschalr <ronald@innovation.ch>
  * based on mod_auth, by Rob McCool and Robert S. Thau
  *
  * This module an updated version of modules/standard/mod_digest.c
@@ -232,7 +232,7 @@ static apr_status_t initialize_secret(server_rec *s)
 {
     apr_status_t status;
 
-    ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, s, APLOGNO(01757)
+    ap_log_error(APLOG_MARK, APLOG_DEBUG, 0, s, APLOGNO(01757)
                  "generating secret for digest authentication ...");
 
 #if APR_HAS_RANDOM