From 3dae90067c4a03de15ee2f5c4e2fe907fd90438d Mon Sep 17 00:00:00 2001 From: Jim Jagielski <jim@apache.org> Date: Mon, 9 Jan 2017 21:16:20 +0000 Subject: [PATCH] *) 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 --- STATUS | 8 -------- modules/aaa/mod_auth_digest.c | 4 ++-- 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/STATUS b/STATUS index 291ba16752..855e659d64 100644 --- 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 diff --git a/modules/aaa/mod_auth_digest.c b/modules/aaa/mod_auth_digest.c index 6a50ba7591..117caa19b8 100644 --- a/modules/aaa/mod_auth_digest.c +++ b/modules/aaa/mod_auth_digest.c @@ -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 Tschal�r <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 -- 2.40.0