Commit bd4469b6 authored by Jim Jagielski's avatar Jim Jagielski
Browse files

*) 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


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.4.x@1778051 13f79535-47bb-0310-9956-ffa450edef68
parent 310dde30
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -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
+2 −2
Original line number Diff line number Diff line
@@ -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 Tschalr <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