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

Completed checking of extra NSEC3 records in semcheck.

Refs #1770
parent 01226cfe
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ static char *error_messages[(-ZC_ERR_ALLOC) + 1] = {
"NSEC3: NSEC3 bitmap error!\n",
[-ZC_ERR_NSEC3_EXTRA_RECORD] =
"NSEC3: NSEC3 node contains extra record. This is valid, however Knot "
"will not serve this record properly."
"will not serve this record properly.",
[-ZC_ERR_CNAME_CYCLE] =
"CNAME: CNAME cycle!\n",
......@@ -1020,17 +1020,17 @@ static int check_nsec3_node_in_zone(knot_zone_contents_t *zone, knot_node_t *nod
}
/* Check that the node only contains NSEC3 and RRSIG. */
const knot_rrset_t *rrsets = knot_node_rrsets(node);
const knot_rrset_t **rrsets = knot_node_rrsets(node);
if (rrsets == NULL) {
return KNOT_ENOMEM;
}
for (int i = 0; i < knot_node_rrset_count(node), i++) {
for (int i = 0; i < knot_node_rrset_count(node); i++) {
uint16_t type = knot_rrset_type(rrsets[i]);
if (!(type == KNOT_RRTYPE_NSEC3 ||
type == KNOT_RRTYPE_RRSIG)) {
err_handler_handle_error(handler, node,
ZR_ERR_N)
ZC_ERR_NSEC3_EXTRA_RECORD);
}
}
......
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