Skip to content
Snippets Groups Projects
Commit becd91ad authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

review fix: reverse the condition modified in previous commit

parent d804088d
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ static bool use_key(const knot_zone_key_t *key, const knot_rrset_t *covered)
}
// use KSK only in the zone apex
if (knot_dname_is_equal(key->dnssec_key.name, covered->owner)) {
if (!knot_dname_is_equal(key->dnssec_key.name, covered->owner)) {
return false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment