From 87029b8b4ad60042f5044076930dc69b32c72b54 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Thu, 13 Apr 2006 10:14:07 +0000 Subject: r15068: Fix a shadowed variable warning (This used to be commit 066f69fe88b360b856f3dc49089f8c21b721cce9) --- source3/nsswitch/winbindd_passdb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source3/nsswitch/winbindd_passdb.c b/source3/nsswitch/winbindd_passdb.c index 64d811464b..2aaed1acef 100644 --- a/source3/nsswitch/winbindd_passdb.c +++ b/source3/nsswitch/winbindd_passdb.c @@ -433,7 +433,7 @@ static NTSTATUS sequence_number(struct winbindd_domain *domain, uint32 *seq) static NTSTATUS lockout_policy(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx, - SAM_UNK_INFO_12 *lockout_policy) + SAM_UNK_INFO_12 *policy) { /* actually we have that */ return NT_STATUS_NOT_IMPLEMENTED; @@ -441,7 +441,7 @@ static NTSTATUS lockout_policy(struct winbindd_domain *domain, static NTSTATUS password_policy(struct winbindd_domain *domain, TALLOC_CTX *mem_ctx, - SAM_UNK_INFO_1 *password_policy) + SAM_UNK_INFO_1 *policy) { /* actually we have that */ return NT_STATUS_NOT_IMPLEMENTED; -- cgit