summaryrefslogtreecommitdiff
path: root/plugins/docsis/packet-macmgmt.c
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-10-20 14:30:27 +0000
committerBill Meier <wmeier@newsguy.com>2011-10-20 14:30:27 +0000
commit94e9c99b3f4dd0798b3080d9164e258b181569cb (patch)
tree45717621b6c93a8a90dbeeae0b6895af223d2ea2 /plugins/docsis/packet-macmgmt.c
parent05b50ef6978a0e1e11841ec9832e59f698f30fea (diff)
downloadwireshark-94e9c99b3f4dd0798b3080d9164e258b181569cb.tar.gz
Use ENC_NA as proto_tree_add_item() encoding arg for FT_ETHER hf[] field type.
svn path=/trunk/; revision=39490
Diffstat (limited to 'plugins/docsis/packet-macmgmt.c')
-rw-r--r--plugins/docsis/packet-macmgmt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/docsis/packet-macmgmt.c b/plugins/docsis/packet-macmgmt.c
index 07cf1cfcf4..a69ade6856 100644
--- a/plugins/docsis/packet-macmgmt.c
+++ b/plugins/docsis/packet-macmgmt.c
@@ -175,9 +175,9 @@ dissect_macmgmt (tvbuff_t * tvb, packet_info * pinfo, proto_tree * tree)
"Mac Management");
mgt_hdr_tree = proto_item_add_subtree (mgt_hdr_it, ett_docsis_mgmt);
proto_tree_add_item (mgt_hdr_tree, hf_docsis_mgt_dst_addr, tvb, 0, 6,
- FALSE);
+ ENC_NA);
proto_tree_add_item (mgt_hdr_tree, hf_docsis_mgt_src_addr, tvb, 6, 6,
- FALSE);
+ ENC_NA);
proto_tree_add_item (mgt_hdr_tree, hf_docsis_mgt_msg_len, tvb, 12, 2,
ENC_BIG_ENDIAN);
proto_tree_add_item (mgt_hdr_tree, hf_docsis_mgt_dsap, tvb, 14, 1,