diff options
Diffstat (limited to 'asn1/spnego/spnego.cnf')
-rw-r--r-- | asn1/spnego/spnego.cnf | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/asn1/spnego/spnego.cnf b/asn1/spnego/spnego.cnf index 91a10186c4..f5ce61ff75 100644 --- a/asn1/spnego/spnego.cnf +++ b/asn1/spnego/spnego.cnf @@ -46,7 +46,7 @@ NegTokenInit/mechListMIC negTokenInit_mechListMIC #.FN_BODY InnerContextToken - gssapi_oid_value *next_level_value; + gssapi_oid_value *next_level_value_lcl; proto_item *item; proto_tree *subtree; tvbuff_t *token_tvb; @@ -60,7 +60,7 @@ NegTokenInit/mechListMIC negTokenInit_mechListMIC * for some other security mechanism in GSS_Wrap tokens.) * Does it matter? */ - next_level_value = gssapi_lookup_oid_str(MechType_oid); + next_level_value_lcl = gssapi_lookup_oid_str(MechType_oid); /* * Now dissect the GSS_Wrap token; it's assumed to be in the @@ -77,8 +77,8 @@ NegTokenInit/mechListMIC negTokenInit_mechListMIC * we (and it) dissected. */ token_tvb = tvb_new_subset_remaining(tvb, offset); - if (next_level_value && next_level_value->wrap_handle) { - len = call_dissector(next_level_value->wrap_handle, token_tvb, actx->pinfo, + if (next_level_value_lcl && next_level_value_lcl->wrap_handle) { + len = call_dissector(next_level_value_lcl->wrap_handle, token_tvb, actx->pinfo, subtree); if (len == 0) offset = tvb_length(tvb); |