From: W.C.A. Wijngaards Date: Wed, 22 Jul 2026 10:16:49 +0000 (+0200) Subject: - Fix error in log printout in fix for CVE-2026-50248, when the X-Git-Tag: release-1.26.0rc1~25 X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=cf5e6e89a582151d5875fbd5db7d29fb3d9dc0cf;p=thirdparty%2Funbound.git - Fix error in log printout in fix for CVE-2026-50248, when the primary name is bogus. --- diff --git a/doc/Changelog b/doc/Changelog index 0a5821c5a..7a0232e86 100644 --- a/doc/Changelog +++ b/doc/Changelog @@ -97,6 +97,8 @@ - Unit test for CVE-2026-55717. - Unit test for CVE-2026-55973. - Unit test for CVE-2026-56416. + - Fix error in log printout in fix for CVE-2026-50248, when the + primary name is bogus. 21 July 2026: Wouter - Merge #1476 from petrvaganoff: ipsecmod: fix possible deref diff --git a/services/authzone.c b/services/authzone.c index 4218b8e82..4dafabf15 100644 --- a/services/authzone.c +++ b/services/authzone.c @@ -7057,7 +7057,7 @@ void auth_xfer_probe_lookup_callback(void* arg, int rcode, sldns_buffer* buf, char zname[LDNS_MAX_DOMAINLEN]; dname_str(xfr->name, zname); verbose(VERB_OPS, "auth zone %s: primary %s address probe lookup is DNSSEC bogus: %s", - zname, xfr->task_transfer->lookup_target->host, + zname, xfr->task_probe->lookup_target->host, (why_bogus?why_bogus:"")); } /* fall through to next-lookup / next-master */