]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
List supported DNSSEC algorithms at log level NOTICE
authorTony Finch <fanf@isc.org>
Tue, 13 Dec 2022 13:02:19 +0000 (13:02 +0000)
committerTony Finch <dot@dotat.at>
Wed, 14 Dec 2022 11:04:35 +0000 (11:04 +0000)
NOTICE matches the other startup messages. WARNING weirdly
suggests the list is a problem.

(cherry picked from commit 72f8d03cad6352958f7f3266c3aa60e1ff6049cf)

CHANGES
bin/named/main.c

diff --git a/CHANGES b/CHANGES
index bf43b526ee22ce14f6b237f2bd9aab1dff942327..36e630766bb6db9bbff366c64a95184e4ae2b562 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,10 @@
+6045.  [cleanup]       The list of supported DNSSEC algorithms changed log
+                       level from "warning" to "notice" to match named's other
+                       startup messages. [GL !7217]
+
+6044.  [bug]           There was an "RSASHA236" typo in a log message.
+                       [GL !7206]
+
 6043.  [bug]           The key file IO locks objects would never get
                        deleted from the hashtable due to off-by-one error.
                        [GL #3727]
index 89f7791a5e40419a675202b394c4718f5cdb1f9d..99e94b43fad50ab7141b5ddaefeb38fde894c083 100644 (file)
@@ -575,7 +575,7 @@ list_hmac_algorithms(isc_buffer_t *b) {
 static void
 logit(isc_buffer_t *b) {
        isc_log_write(named_g_lctx, NAMED_LOGCATEGORY_GENERAL,
-                     NAMED_LOGMODULE_MAIN, ISC_LOG_WARNING, "%.*s",
+                     NAMED_LOGMODULE_MAIN, ISC_LOG_NOTICE, "%.*s",
                      (int)isc_buffer_usedlength(b),
                      (char *)isc_buffer_base(b));
 }