diff --git a/lib/ns/update.c b/lib/ns/update.c index d404dfa786..1334c93380 100644 --- a/lib/ns/update.c +++ b/lib/ns/update.c @@ -3403,11 +3403,18 @@ update_action(isc_task_t *task, isc_event_t *event) { 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; } }