From: Robert Edmonds Date: Wed, 5 Jan 2022 23:02:43 +0000 (-0500) Subject: kdig: print QNAME using wire format case X-Git-Tag: v3.3.dev~231^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cd439f43d66e69ec860d4edccfaf0dd3aa3115d3;p=thirdparty%2Fknot-dns.git kdig: print QNAME using wire format case --- diff --git a/src/utils/common/exec.c b/src/utils/common/exec.c index 220e3d1bd3..9717eb8d06 100644 --- a/src/utils/common/exec.c +++ b/src/utils/common/exec.c @@ -699,7 +699,7 @@ void print_packet(const knot_pkt_t *packet, case FORMAT_FULL: if (style->show_question && qdcount > 0) { printf("%s", style->show_section ? "\n;; QUESTION SECTION:\n;; " : ";;"); - print_section_question(knot_pkt_qname(packet), + print_section_question(knot_pkt_wire_qname(packet), knot_pkt_qclass(packet), knot_pkt_qtype(packet), style);