Skip to content
Snippets Groups Projects
Commit 454d5dc0 authored by Jan Kadlec's avatar Jan Kadlec
Browse files

DNSSEC: do not create NSEC3 nodes for glues.

parent 9474fb7a
No related branches found
No related tags found
No related merge requests found
......@@ -695,6 +695,11 @@ static int create_nsec3_nodes(const knot_zone_contents_t *zone, uint32_t ttl,
while (!hattrie_iter_finished(it)) {
knot_node_t *node = (knot_node_t *)*hattrie_iter_val(it);
if (knot_node_is_non_auth(node)) {
hattrie_iter_next(it);
continue;
}
knot_node_t *nsec3_node;
nsec3_node = create_nsec3_node_for_node(node, zone->apex,
params, ttl);
......
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