aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dec-bpdu.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-dec-bpdu.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-dec-bpdu.c')
-rw-r--r--epan/dissectors/packet-dec-bpdu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-dec-bpdu.c b/epan/dissectors/packet-dec-bpdu.c
index fc41ac3df8..ccba9da4ba 100644
--- a/epan/dissectors/packet-dec-bpdu.c
+++ b/epan/dissectors/packet-dec-bpdu.c
@@ -280,6 +280,6 @@ proto_reg_handoff_dec_bpdu(void)
dec_bpdu_handle = create_dissector_handle(dissect_dec_bpdu,
proto_dec_bpdu);
dissector_add_uint("ethertype", ETHERTYPE_DEC_LB, dec_bpdu_handle);
- dissector_add_uint("chdlctype", ETHERTYPE_DEC_LB, dec_bpdu_handle);
+ dissector_add_uint("chdlc.protocol", ETHERTYPE_DEC_LB, dec_bpdu_handle);
dissector_add_uint("ppp.protocol", PPP_DEC_LB, dec_bpdu_handle);
}