Skip to content
Snippets Groups Projects
Commit 9574949f authored by Vladimír Čunát's avatar Vladimír Čunát
Browse files

Merge !209: iterate: remove unused function

parents ebf0697f 6d04f727
Branches
Tags
2 merge requests!254Knot Resolver 1.2.5,!209iterate: remove function unused after parent merge
Pipeline #2095 passed with stages
in 1 minute and 56 seconds
......@@ -358,18 +358,6 @@ static void finalize_answer(knot_pkt_t *pkt, struct kr_query *qry, struct kr_req
knot_wire_set_rcode(answer->wire, knot_wire_get_rcode(pkt->wire));
}
static bool is_rrsig_type_covered(const knot_rrset_t *rr, uint16_t type)
{
bool ret = false;
for (unsigned i = 0; i < rr->rrs.rr_count; ++i) {
if (knot_rrsig_type_covered(&rr->rrs, i) == type) {
ret = true;
break;
}
}
return ret;
}
static int unroll_cname(knot_pkt_t *pkt, struct kr_request *req, bool referral, const knot_dname_t **cname_ret)
{
struct kr_query *query = req->current_query;
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment