From: Miek Gieben Date: Thu, 12 May 2005 11:10:55 +0000 (+0000) Subject: no ',' after additional X-Git-Tag: release-0.60^2~56 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b673bc6dfd6fa5c4fdf8a72fa469189fc25c323b;p=thirdparty%2Fldns.git no ',' after additional --- diff --git a/host2str.c b/host2str.c index 57988386..27f44e66 100644 --- a/host2str.c +++ b/host2str.c @@ -906,12 +906,10 @@ ldns_pktheader2buffer_str(ldns_buffer *output, ldns_pkt *pkt) ldns_buffer_printf(output, "ad "); } ldns_buffer_printf(output, "; "); - ldns_buffer_printf(output, "QUERY: %u, ", ldns_pkt_qdcount(pkt)); ldns_buffer_printf(output, "ANSWER: %u, ", ldns_pkt_ancount(pkt)); ldns_buffer_printf(output, "AUTHORITY: %u, ", ldns_pkt_nscount(pkt)); - ldns_buffer_printf(output, "ADDITIONAL: %u, ", ldns_pkt_arcount(pkt)); - + ldns_buffer_printf(output, "ADDITIONAL: %u ", ldns_pkt_arcount(pkt)); return ldns_buffer_status(output); }