aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/spnego
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2010-01-28 15:03:47 +0000
committerBill Meier <wmeier@newsguy.com>2010-01-28 15:03:47 +0000
commitb3b101e606a6abe8dabd393848cb1f6c0fbd4c56 (patch)
treee2be7c2f8307e71c1de61998010ec69235afa1a0 /asn1/spnego
parent3a9c03abd6b2544e857f4ba427f25d32109ecfab (diff)
Fix gcc -Wshadow warning.
svn path=/trunk/; revision=31715
Diffstat (limited to 'asn1/spnego')
-rw-r--r--asn1/spnego/spnego.cnf8
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);