From: Alessio Podda Date: Mon, 11 May 2026 08:27:35 +0000 (+0200) Subject: Clean up comments X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffbab8ce23834959a50db9db414c3b55948c5632;p=thirdparty%2Fbind9.git Clean up comments A comment was still referencing the rdataset attribute, now it has been fixed. --- diff --git a/lib/dns/qpzone.c b/lib/dns/qpzone.c index ff8b244f5d3..543d56688dd 100644 --- a/lib/dns/qpzone.c +++ b/lib/dns/qpzone.c @@ -5296,12 +5296,13 @@ glue_nsdname_cb(void *arg, const dns_name_t *name, dns_rdatatype_t qtype, } /* - * If the currently processed NS record is in-bailiwick, mark any glue - * RRsets found for it with 'required' attribute. Note that for - * simplicity, glue RRsets for all in-bailiwick NS records are marked - * this way, even though dns_message_rendersection() only checks the - * attributes for the first rdataset associated with the first name - * added to the ADDITIONAL section. + * If the currently processed NS record is in-bailiwick, mark the + * glue as 'required'. The flag is later propagated to the rdataset + * attributes when the glue is bound. Note that for simplicity, glue + * for all in-bailiwick NS records is marked this way, even though + * dns_message_rendersection() only checks the attributes for the + * first rdataset associated with the first name added to the + * ADDITIONAL section. */ if (glue != NULL && dns_name_issubdomain(name, ctx->owner_name)) { glue->required = true;