From 6cd6f508aa12468950d68567000db33651192a22 Mon Sep 17 00:00:00 2001 From: Andrew Bartlett Date: Fri, 10 Oct 2003 14:24:19 +0000 Subject: [PATCH] Match Samba 2.2, and make ACB_NORMAL the default ACB value. (Samba 2.2 did this in the LDAP code, but it fits better as a generic thing) Andrew Bartlett (This used to be commit 36ccf922a34127f2eb6b7da590e426544539ab25) --- source3/passdb/passdb.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/source3/passdb/passdb.c b/source3/passdb/passdb.c index 0afa130a67f..9d8f600eeac 100644 --- a/source3/passdb/passdb.c +++ b/source3/passdb/passdb.c @@ -104,6 +104,13 @@ void pdb_fill_default_sam(SAM_ACCOUNT *user) user->private.plaintext_pw = NULL; + /* + Unless we know otherwise have a Account Control Bit + value of 'normal user'. This helps User Manager, which + asks for a filtered list of users. + */ + + user->private.acct_ctrl = ACB_NORMAL; } static void destroy_pdb_talloc(SAM_ACCOUNT **user) -- 2.34.1