]> git.ipfire.org Git - thirdparty/knot-resolver.git/commitdiff
iterate.c: clarify is_authoritative workaround comment 75416
authorŠtěpán Balážik <stepan.balazik@nic.cz>
Mon, 25 Jan 2021 08:48:57 +0000 (09:48 +0100)
committerŠtěpán Balážik <stepan.balazik@nic.cz>
Mon, 25 Jan 2021 14:42:55 +0000 (15:42 +0100)
lib/layer/iterate.c

index bf3bb97c4bf5948c9305ae989c5e835a2bbf6619..89589b041ff1aa42a6dba6c7d8b0f3b9ebbcc0b7 100644 (file)
@@ -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;
        }