aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-aarp.c
diff options
context:
space:
mode:
authorChris Maynard <Christopher.Maynard@GTECH.COM>2013-09-11 21:37:58 +0000
committerChris Maynard <Christopher.Maynard@GTECH.COM>2013-09-11 21:37:58 +0000
commitf2c276ec2160e98377ba5509b95125f0414c0520 (patch)
tree600e7465631c1024b88a5633d09fb3fe24a668c7 /epan/dissectors/packet-aarp.c
parent2a276b349854801be35d942ea6adc6d849d52268 (diff)
Change the name of the Cisco HDLC dissector table from chdlctype to chdlc.protocol and change the UI name to match. It is by far much more common to name the tables after the field than to pick another name.
svn path=/trunk/; revision=51958
Diffstat (limited to 'epan/dissectors/packet-aarp.c')
-rw-r--r--epan/dissectors/packet-aarp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-aarp.c b/epan/dissectors/packet-aarp.c
index 214e97a141..2f5ecff64e 100644
--- a/epan/dissectors/packet-aarp.c
+++ b/epan/dissectors/packet-aarp.c
@@ -345,5 +345,5 @@ proto_reg_handoff_aarp(void)
aarp_handle = create_dissector_handle(dissect_aarp, proto_aarp);
dissector_add_uint("ethertype", ETHERTYPE_AARP, aarp_handle);
- dissector_add_uint("chdlctype", ETHERTYPE_AARP, aarp_handle);
+ dissector_add_uint("chdlc.protocol", ETHERTYPE_AARP, aarp_handle);
}