aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-14 08:38:58 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-05-14 08:38:58 +0000
commit0a18571b51c68520f42f0e602cf8854759b7f34b (patch)
tree72a9f7e1cca24d0bd222c704f188e5aa60f27ba4 /plugins
parentda37c11a5dd893de403e99606a506cfe1a9f7007 (diff)
From cfreeer (bug 2540):
Corrected use of hf_snp_auth_policy_support. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25296 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'plugins')
-rw-r--r--plugins/wimax/wimax_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/wimax/wimax_utils.c b/plugins/wimax/wimax_utils.c
index dff537cc78..5d3a0fe07a 100644
--- a/plugins/wimax/wimax_utils.c
+++ b/plugins/wimax/wimax_utils.c
@@ -2672,7 +2672,7 @@ void wimax_security_negotiation_parameters_decoder(tvbuff_t *tvb, packet_info *p
break;
case PKM_ATTR_SECURITY_NEGOTIATION_PARAMETER_SUB_AUTHORIZATION_POLICY_SUPPORT:
/* add TLV subtree */
- tlv_tree = add_tlv_subtree(&tlv_info, ett_security_negotiation_parameters, tree, hf_snp_pkm_version_support, tvb, offset, tlv_len, FALSE);
+ tlv_tree = add_tlv_subtree(&tlv_info, ett_security_negotiation_parameters, tree, hf_snp_auth_policy_support, tvb, offset, tlv_len, FALSE);
proto_tree_add_item(tlv_tree, hf_snp_auth_policy_support_bit0, tvb, offset, 1, FALSE);
proto_tree_add_item(tlv_tree, hf_snp_auth_policy_support_bit1, tvb, offset, 1, FALSE);
proto_tree_add_item(tlv_tree, hf_snp_auth_policy_support_bit2, tvb, offset, 1, FALSE);