summaryrefslogtreecommitdiff
path: root/plugins/wimax
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-09-24 19:09:10 +0000
committerGuy Harris <guy@alum.mit.edu>2013-09-24 19:09:10 +0000
commitd08e9702c8592f7962c6e16a65ffaaabf20df930 (patch)
tree850154d0069b5da40807d779b7894762ea6f5d60 /plugins/wimax
parent36fd921839df7df3edda89beb4084c361c53abaf (diff)
downloadwireshark-d08e9702c8592f7962c6e16a65ffaaabf20df930.tar.gz
Fix copy-and-pasteo(?).
svn path=/trunk/; revision=52205
Diffstat (limited to 'plugins/wimax')
-rw-r--r--plugins/wimax/msg_pkm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/wimax/msg_pkm.c b/plugins/wimax/msg_pkm.c
index 6eff638f46..545a059912 100644
--- a/plugins/wimax/msg_pkm.c
+++ b/plugins/wimax/msg_pkm.c
@@ -90,7 +90,7 @@ static void dissect_mac_mgmt_msg_pkm_req_decoder(tvbuff_t *tvb, packet_info *pin
proto_tree *pkm_tree;
/* display MAC payload type PKM-REQ */
- pkm_item = pkm_item = proto_tree_add_protocol_format(tree, proto_mac_mgmt_msg_pkm_decoder, tvb, offset, -1, "Privacy Key Management Request (PKM-REQ)");
+ pkm_item = proto_tree_add_protocol_format(tree, proto_mac_mgmt_msg_pkm_decoder, tvb, offset, -1, "Privacy Key Management Request (PKM-REQ)");
/* add MAC PKM subtree */
pkm_tree = proto_item_add_subtree(pkm_item, ett_mac_mgmt_msg_pkm_req_decoder);
/* Decode and display the Privacy Key Management Request Message (PKM-REQ) (table 24) */
@@ -171,4 +171,4 @@ void proto_reg_handoff_mac_mgmt_msg_pkm(void)
dissector_add_uint( "wmx.mgmtmsg", MAC_MGMT_MSG_PKM_REQ, mac_mgmt_msg_pkm_req_handle );
mac_mgmt_msg_pkm_rsp_handle = create_dissector_handle(dissect_mac_mgmt_msg_pkm_rsp_decoder, proto_mac_mgmt_msg_pkm_decoder);
dissector_add_uint( "wmx.mgmtmsg", MAC_MGMT_MSG_PKM_RSP, mac_mgmt_msg_pkm_rsp_handle );
-} \ No newline at end of file
+}