summaryrefslogtreecommitdiffstats
path: root/source/rpc_parse
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-11-25 02:08:43 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-11-25 02:08:43 +0000
commit3f1cfb62e85343a45817651f111f01051fc66b18 (patch)
tree0459f0e659f286e511ffa0fa1129740acf60d5f9 /source/rpc_parse
parentb390d6eef95ee6094eb193006bc2f23c40291026 (diff)
downloadsamba-3f1cfb62e85343a45817651f111f01051fc66b18.tar.gz
samba-3f1cfb62e85343a45817651f111f01051fc66b18.tar.xz
samba-3f1cfb62e85343a45817651f111f01051fc66b18.zip
Fix ./configure --enable-developer warnings (shadow of global)
Diffstat (limited to 'source/rpc_parse')
-rw-r--r--source/rpc_parse/parse_lsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpc_parse/parse_lsa.c b/source/rpc_parse/parse_lsa.c
index d7ef923be94..b5f51de697f 100644
--- a/source/rpc_parse/parse_lsa.c
+++ b/source/rpc_parse/parse_lsa.c
@@ -1660,12 +1660,12 @@ BOOL lsa_io_r_unk_get_connuser(char *desc, LSA_R_UNK_GET_CONNUSER *r_c, prs_stru
return True;
}
-void init_lsa_q_open_account(LSA_Q_OPENACCOUNT *trn, POLICY_HND *hnd, DOM_SID *sid, uint32 access)
+void init_lsa_q_open_account(LSA_Q_OPENACCOUNT *trn, POLICY_HND *hnd, DOM_SID *sid, uint32 desired_access)
{
memcpy(&trn->pol, hnd, sizeof(trn->pol));
init_dom_sid2(&trn->sid, sid);
- trn->access = access;
+ trn->access = desired_access;
}
/*******************************************************************