summaryrefslogtreecommitdiff
path: root/source3/rpc_parse/parse_lsa.c
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
commitb47f6a444879eb290c2ff36456a8d782e5680553 (patch)
tree07798ea336b5d469ae1072e9dfc438ddc7bf3687 /source3/rpc_parse/parse_lsa.c
parent354cdfa8f87f7795e16461c86b122fa57ca912da (diff)
downloadsamba-b47f6a444879eb290c2ff36456a8d782e5680553.tar.gz
samba-b47f6a444879eb290c2ff36456a8d782e5680553.tar.bz2
samba-b47f6a444879eb290c2ff36456a8d782e5680553.zip
Fix ./configure --enable-developer warnings (shadow of global)
(This used to be commit 3f1cfb62e85343a45817651f111f01051fc66b18)
Diffstat (limited to 'source3/rpc_parse/parse_lsa.c')
-rw-r--r--source3/rpc_parse/parse_lsa.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_lsa.c b/source3/rpc_parse/parse_lsa.c
index d7ef923be9..b5f51de697 100644
--- a/source3/rpc_parse/parse_lsa.c
+++ b/source3/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;
}
/*******************************************************************