From 7e76367e59452bc8f516572eb05ed614b776087d Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Wed, 9 Feb 2011 10:46:21 +1100 Subject: s4-auth Fix setting of bad_password_count in auth_convert_user_info_dc_sambaseinfo() Discovered during the convertion to auth_user_info. Andrew Bartlett --- source4/auth/auth_sam_reply.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source4/auth/auth_sam_reply.c b/source4/auth/auth_sam_reply.c index 11f88701e2..eb9a83418a 100644 --- a/source4/auth/auth_sam_reply.c +++ b/source4/auth/auth_sam_reply.c @@ -74,7 +74,7 @@ NTSTATUS auth_convert_user_info_dc_sambaseinfo(TALLOC_CTX *mem_ctx, sam->home_drive.string = info->home_drive; sam->logon_count = info->logon_count; - sam->bad_password_count = sam->bad_password_count; + sam->bad_password_count = info->bad_password_count; sam->groups.count = 0; sam->groups.rids = NULL; -- cgit