You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by ji...@apache.org on 2017/01/09 21:16:20 UTC

svn commit: r1778051 - in /httpd/httpd/branches/2.4.x: STATUS modules/aaa/mod_auth_digest.c

Author: jim
Date: Mon Jan  9 21:16:20 2017
New Revision: 1778051

URL: http://svn.apache.org/viewvc?rev=1778051&view=rev
Log:
  *) 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



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

Modified:
    httpd/httpd/branches/2.4.x/STATUS
    httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_digest.c

Modified: httpd/httpd/branches/2.4.x/STATUS
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/STATUS?rev=1778051&r1=1778050&r2=1778051&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/STATUS (original)
+++ httpd/httpd/branches/2.4.x/STATUS Mon Jan  9 21:16:20 2017
@@ -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

Modified: httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_digest.c
URL: http://svn.apache.org/viewvc/httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_digest.c?rev=1778051&r1=1778050&r2=1778051&view=diff
==============================================================================
--- httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_digest.c (original)
+++ httpd/httpd/branches/2.4.x/modules/aaa/mod_auth_digest.c Mon Jan  9 21:16:20 2017
@@ -18,7 +18,7 @@
  * mod_auth_digest: MD5 digest authentication
  *
  * Originally by Alexei Kosut <ak...@nueva.pvt.k12.ca.us>
- * Updated to RFC-2617 by Ronald Tschal�r <ro...@innovation.ch>
+ * Updated to RFC-2617 by Ronald Tschal�r <ro...@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(se
 {
     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