diff --git a/src/knot/nameserver/internet.c b/src/knot/nameserver/internet.c index 44b17888087b2383ae47a72d9b2caded10a0c9d1..9101641ba4f9822213d41d636e8bdac4d6d81b15 100644 --- a/src/knot/nameserver/internet.c +++ b/src/knot/nameserver/internet.c @@ -469,8 +469,7 @@ static int name_not_found(knot_pkt_t *pkt, struct query_data *qdata) int next_state = name_found(pkt, qdata); /* Put to wildcard node list. */ - if (wildcard_visit(qdata, wildcard_node, qdata->name) - != KNOT_EOK) { + if (wildcard_visit(qdata, wildcard_node, qdata->name) != KNOT_EOK) { next_state = ERROR; } diff --git a/src/knot/zone/node.h b/src/knot/zone/node.h index 879cc7a1502d19d63656fa377b8951a7edf11f0b..51dbf2d3e4a4a3ffcaca7e003fdb52818c332cfe 100644 --- a/src/knot/zone/node.h +++ b/src/knot/zone/node.h @@ -35,7 +35,6 @@ struct rr_data; - /*! * \brief Structure representing one node in a domain name tree, i.e. one domain * name in a zone. @@ -73,11 +72,7 @@ struct knot_node { /*! * \brief Various flags. * - * 0x01 - node is a delegation point - * 0x02 - node is non-authoritative (under a delegation point) - * 0x04 - NSEC(3) was removed from the node. - * 0x08 - Node has a wildcard child. - * 0x10 - node is empty and will be deleted after update + * \ref knot_node_flags_t */ uint8_t flags; };