diff --git a/lib/ns/update.c b/lib/ns/update.c index 9f9716451b..dfecd4262f 100644 --- a/lib/ns/update.c +++ b/lib/ns/update.c @@ -3261,11 +3261,18 @@ update_action(void *arg) { 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; } }