* even if cut name is covered by TA. */
qry->flags.DNSSEC_WANT = false;
qry->flags.DNSSEC_INSECURE = true;
- VERBOSE_MSG(qry, "=> going insecure because parent query is insecure\n");
} else if (kr_ta_covers_qry(req->ctx, qry->zone_cut.name, KNOT_RRTYPE_NS)) {
qry->flags.DNSSEC_WANT = true;
} else {
qry->flags.DNSSEC_WANT = false;
- VERBOSE_MSG(qry, "=> going insecure because there's no covering TA\n");
}
struct kr_zonecut cut_found;
WITH_VERBOSE(qry) {
auto_free char *label_str = kr_dname_text(label);
VERBOSE_MSG(qry,
- "found cut: %s (rank 0%.2o return codes: DS %d, DNSKEY %d)\n",
- label_str, rank, ret_ds, ret_dnskey);
+ "found cut: %s (return codes: DS %d, DNSKEY %d)\n",
+ label_str, ret_ds, ret_dnskey);
}
return kr_ok();
}