aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-10-29 11:39:17 -0700
committerGuy Harris <guy@alum.mit.edu>2015-10-29 18:39:59 +0000
commitdc5a3c3383cc8753faf52002a8eaf044c7d7937f (patch)
tree1620d7dca1653edb80d1376846dc46bd07128f7e /epan/dissectors
parent0f05ab9ab18521f5a6ab8330a9ebf9c306cb8ea1 (diff)
Distinguish mDNS from Boring Old DNS.
Oh, and the "S" in "DNS" stands for "System", not "Service"; see RFC 1034 and 1035. Change-Id: Iff1904dbe245db68880b3336d744460f21fb8fd8 Reviewed-on: https://code.wireshark.org/review/11408 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-dns.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dns.c b/epan/dissectors/packet-dns.c
index 33b48233b8..4f418ce5d4 100644
--- a/epan/dissectors/packet-dns.c
+++ b/epan/dissectors/packet-dns.c
@@ -3666,7 +3666,7 @@ dissect_dns_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
"Link-local Multicast Name Resolution (%s)", (flags & F_RESPONSE) ? "response" : "query");
} else if (is_mdns){
ti = proto_tree_add_protocol_format(tree, proto_mdns, tvb, 0, -1,
- "Domain Name System (%s)", (flags & F_RESPONSE) ? "response" : "query");
+ "Multicast Domain Name System (%s)", (flags & F_RESPONSE) ? "response" : "query");
} else {
ti = proto_tree_add_protocol_format(tree, proto_dns, tvb, 0, -1,
"Domain Name System (%s)", (flags & F_RESPONSE) ? "response" : "query");
@@ -5528,8 +5528,8 @@ proto_register_dns(void)
module_t *dns_module;
expert_module_t* expert_dns;
- proto_dns = proto_register_protocol("Domain Name Service", "DNS", "dns");
- proto_mdns = proto_register_protocol("Multicast Domain Name Service", "mDNS", "mdns");
+ proto_dns = proto_register_protocol("Domain Name System", "DNS", "dns");
+ proto_mdns = proto_register_protocol("Multicast Domain Name System", "mDNS", "mdns");
proto_llmnr = proto_register_protocol("Link-local Multicast Name Resolution", "LLMNR", "llmnr");
proto_register_field_array(proto_dns, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));