From: Štěpán Balážik Date: Mon, 25 Jan 2021 08:48:57 +0000 (+0100) Subject: iterate.c: clarify is_authoritative workaround comment X-Git-Tag: v5.3.0~15^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c5885d23e69893715c327e003ae90d63682ea63d;p=thirdparty%2Fknot-resolver.git iterate.c: clarify is_authoritative workaround comment --- diff --git a/lib/layer/iterate.c b/lib/layer/iterate.c index bf3bb97c4..89589b041 100644 --- a/lib/layer/iterate.c +++ b/lib/layer/iterate.c @@ -98,7 +98,7 @@ static bool is_authoritative(const knot_pkt_t *answer, struct kr_query *query) } #ifndef STRICT_MODE - /* Last resort to work around broken auths, if the zone cut is at/parent of the QNAME. */ + /* Last resort to work around broken auths, if the zone cut is at the QNAME. */ if (knot_dname_is_equal(query->zone_cut.name, knot_pkt_qname(answer))) { return true; }