When processing UPDATE request DNSKEY, CDNSKEY and CDS record that
are managed by named are filtered out. The log message has been
updated to report the actual type rather that just DNSKEY.
FAIL(r);
}
if (inuse) {
+ char typebuf
+ [DNS_RDATATYPE_FORMATSIZE];
+
+ dns_rdatatype_format(
+ rdata.type, typebuf,
+ sizeof(typebuf));
update_log(client, zone,
LOGLEVEL_PROTOCOL,
"attempt to "
"delete in use "
- "DNSKEY ignored");
+ "%s ignored",
+ typebuf);
continue;
}
}