From 2424dce445adbeefe0e7545aec4d011efbfdc2af Mon Sep 17 00:00:00 2001 From: stig Date: Mon, 23 Jun 2008 21:53:24 +0000 Subject: Renamed some local variables to avoid name collisions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@25565 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-dcerpc-rpriv.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'epan/dissectors/packet-dcerpc-rpriv.c') 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; -- cgit v1.2.3