]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
no ',' after additional
authorMiek Gieben <miekg@NLnetLabs.nl>
Thu, 12 May 2005 11:10:55 +0000 (11:10 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Thu, 12 May 2005 11:10:55 +0000 (11:10 +0000)
host2str.c

index 579883865d6f125a1c29a2e0281a935df62c056a..27f44e662ec615c17de4bfe94944f31ab64f023c 100644 (file)
@@ -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);
 }