aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-rpriv.c
diff options
context:
space:
mode:
authorstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 21:53:24 +0000
committerstig <stig@f5534014-38df-0310-8fa8-9805f1628bb7>2008-06-23 21:53:24 +0000
commit2424dce445adbeefe0e7545aec4d011efbfdc2af (patch)
tree938f1c9ef63a5de1c34d0d27962846517674d353 /epan/dissectors/packet-dcerpc-rpriv.c
parentebb405832fb946ac7ef1636d2ed786c084512f7d (diff)
Renamed some local variables to avoid name collisions.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25565 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-dcerpc-rpriv.c')
-rw-r--r--epan/dissectors/packet-dcerpc-rpriv.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/epan/dissectors/packet-dcerpc-rpriv.c b/epan/dissectors/packet-dcerpc-rpriv.c
index 4ca249afc7..68421dcd64 100644
--- a/epan/dissectors/packet-dcerpc-rpriv.c
+++ b/epan/dissectors/packet-dcerpc-rpriv.c
@@ -74,7 +74,7 @@ rpriv_dissect_get_eptgt_rqst (tvbuff_t *tvb, int offset,
*/
guint32 authn_svc, authz_svc, key_size, key_size2, var1;
- const char *key_t = NULL;
+ const char *key_t1 = NULL;
const char *key_t2 = NULL;
offset = dissect_ndr_uint32 (tvb, offset, pinfo, tree, drep, hf_rpriv_get_eptgt_rqst_authn_svc, &authn_svc);
@@ -85,7 +85,7 @@ rpriv_dissect_get_eptgt_rqst (tvbuff_t *tvb, int offset,
/* advance to get size of cell, and princ */
proto_tree_add_string (tree, hf_rpriv_get_eptgt_rqst_key_t, tvb, offset, hf_rpriv_get_eptgt_rqst_key_size, tvb_get_ptr (tvb, offset, key_size));
- key_t = (const char *)tvb_get_ptr(tvb,offset,key_size);
+ key_t1 = (const char *)tvb_get_ptr(tvb,offset,key_size);
offset += key_size;
offset += 8;
@@ -97,7 +97,7 @@ rpriv_dissect_get_eptgt_rqst (tvbuff_t *tvb, int offset,
if (check_col(pinfo->cinfo, COL_INFO)) {
col_append_fstr(pinfo->cinfo, COL_INFO,
- " Request for: %s in %s ", key_t2, key_t);
+ " Request for: %s in %s ", key_t2, key_t1);
}
return offset;