]> git.ipfire.org Git - thirdparty/bind9.git/commit
fix: nil: Do not log no root hints of _bind chaos view
authorColin Vidal <colin@isc.org>
Sat, 22 Nov 2025 03:51:30 +0000 (04:51 +0100)
committerColin Vidal <colin@isc.org>
Sat, 22 Nov 2025 03:51:30 +0000 (04:51 +0100)
commit376313c8dc612da4cae9a549a51159cb8df013ce
treec960d08267aa1fb74a7d2c4acd2b2b563c15c99a
parentb4d638473e8c6484a5063392131538fdc7d1c0eb
parent68fda6a0358f857fec27a12a043d0cba4edc3f9b
fix: nil: Do not log no root hints of _bind chaos view

The "no root hints for view X" message must not be shown for the default
_bind/CH view. However, it is shown since 27c4f68dcc1 (part of effective
configuration changes).

The reason is that since 27c4f68dcc1, `configure_views()` now processes
a single list of views, which contains both builtin and user views as
they are both part of the effective configuration. The changes omit the
(now removed, since 6b5f714e53) `need_hints` bool that was disabling the
warning for the builtin view (_bind/CH).

This disable that log again when configuring _bind/CH view.

Merge branch 'colin/nohintswarn-bindchaos' into 'main'

See merge request isc-projects/bind9!11264