aboutsummaryrefslogtreecommitdiffstats
path: root/packet-dns.c
diff options
context:
space:
mode:
authorNathan Neulinger <nneul@umr.edu>1999-12-07 00:22:11 +0000
committerNathan Neulinger <nneul@umr.edu>1999-12-07 00:22:11 +0000
commitbbce9df3b85e58185ea9d17026ea5222c73d1c70 (patch)
treeff48d6f5b81b6b43a63dc1936a51d81dae60d440 /packet-dns.c
parent163045012ad566cd29595b4afa1283bdb902bc91 (diff)
Fixes to highlighting for irc dissector req/resp lines
Change to dns dissector to display "Domain Name System (request)" instead of "DNS request" in the proto tree, as it is more in keeping with the style of the other proto tree entries. svn path=/trunk/; revision=1233
Diffstat (limited to 'packet-dns.c')
-rw-r--r--packet-dns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-dns.c b/packet-dns.c
index f7cf9f5a16..36c8a40ec4 100644
--- a/packet-dns.c
+++ b/packet-dns.c
@@ -1,7 +1,7 @@
/* packet-dns.c
* Routines for DNS packet disassembly
*
- * $Id: packet-dns.c,v 1.31 1999/11/27 08:59:28 guy Exp $
+ * $Id: packet-dns.c,v 1.32 1999/12/07 00:22:10 nneul Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -1377,7 +1377,7 @@ dissect_dns(const u_char *pd, int offset, frame_data *fd, proto_tree *tree)
if (tree) {
ti = proto_tree_add_item_format(tree, proto_dns, offset, 4, NULL,
- (flags & F_RESPONSE) ? "DNS response" : "DNS query");
+ "Domain Name System (%s)", (flags & F_RESPONSE) ? "response" : "query");
dns_tree = proto_item_add_subtree(ti, ett_dns);