summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2008-05-22 14:19:14 -0700
committerJeremy Allison <jra@samba.org>2008-05-22 14:19:14 -0700
commitcfde5c8d478ced2b02e1711aeee6f609c5e97e4a (patch)
tree26f6a4a0821df6bea75ee50ddec28c4156f32bf1
parent96653e1ff7551dd9214dc14eed4029e2214598f8 (diff)
downloadsamba-cfde5c8d478ced2b02e1711aeee6f609c5e97e4a.tar.gz
samba-cfde5c8d478ced2b02e1711aeee6f609c5e97e4a.tar.bz2
samba-cfde5c8d478ced2b02e1711aeee6f609c5e97e4a.zip
Get rid of "shadowed local var" warnings with gcc.
Jeremy. (This used to be commit 0bc18967aa7cb6f4debeaa48be81d0e48a7d9503)
-rw-r--r--source3/winbindd/winbindd_pam.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c
index 2de10a9f10..f548a04d35 100644
--- a/source3/winbindd/winbindd_pam.c
+++ b/source3/winbindd/winbindd_pam.c
@@ -1290,12 +1290,12 @@ NTSTATUS winbindd_dual_pam_auth_samlogon(struct winbindd_domain *domain,
uint32 logon_parameters,
const char *server,
const char *username,
- const char *domain,
+ const char *ldomain,
const char *workstation,
- const uint8 chal[8],
+ const uint8 lchal[8],
DATA_BLOB lm_response,
DATA_BLOB nt_response,
- struct netr_SamInfo3 **info3);
+ struct netr_SamInfo3 **linfo3);
ZERO_STRUCTP(my_info3);
retry = False;
@@ -1868,12 +1868,12 @@ enum winbindd_result winbindd_dual_pam_auth_crap(struct winbindd_domain *domain,
uint32 logon_parameters,
const char *server,
const char *username,
- const char *domain,
- const char *workstation,
- const uint8 chal[8],
+ const char *ldomain,
+ const char *lworkstation,
+ const uint8 lchal[8],
DATA_BLOB lm_response,
DATA_BLOB nt_response,
- struct netr_SamInfo3 **info3);
+ struct netr_SamInfo3 **linfo3);
retry = False;