mirror of
https://github.com/samba-team/samba.git
synced 2024-12-24 21:34:56 +03:00
abartlet's pdb_set/changed flag fix for NULL passwords
(This used to be commit cfe80f0df7
)
This commit is contained in:
parent
db40d06dd4
commit
eaece3bbe6
@ -61,13 +61,13 @@ static void pdb_force_pw_initialization(SAM_ACCOUNT *pass)
|
||||
{
|
||||
lm_pwd = pdb_get_lanman_passwd(pass);
|
||||
if (lm_pwd)
|
||||
pdb_set_lanman_passwd(pass, NULL, PDB_SET);
|
||||
pdb_set_lanman_passwd(pass, NULL, PDB_CHANGED);
|
||||
}
|
||||
if (pdb_get_init_flags(pass, PDB_NTPASSWD) != PDB_DEFAULT)
|
||||
{
|
||||
nt_pwd = pdb_get_nt_passwd(pass);
|
||||
if (nt_pwd)
|
||||
pdb_set_nt_passwd(pass, NULL, PDB_SET);
|
||||
pdb_set_nt_passwd(pass, NULL, PDB_CHANGED);
|
||||
}
|
||||
}
|
||||
|
||||
@ -248,8 +248,7 @@ static NTSTATUS context_add_sam_account(struct pdb_context *context, SAM_ACCOUNT
|
||||
acb_flags = pdb_get_acct_ctrl( sam_acct );
|
||||
if ( !lm_pw && !nt_pw && !(acb_flags&ACB_PWNOTREQ) ) {
|
||||
acb_flags |= ACB_DISABLED;
|
||||
pdb_set_acct_ctrl( sam_acct, acb_flags, PDB_SET );
|
||||
pdb_set_init_flags(sam_acct, PDB_ACCTCTRL, PDB_SET);
|
||||
pdb_set_acct_ctrl( sam_acct, acb_flags, PDB_CHANGED );
|
||||
}
|
||||
|
||||
/** @todo This is where a 're-read on add' should be done */
|
||||
@ -283,8 +282,7 @@ static NTSTATUS context_update_sam_account(struct pdb_context *context, SAM_ACCO
|
||||
acb_flags = pdb_get_acct_ctrl( sam_acct );
|
||||
if ( !lm_pw && !nt_pw && !(acb_flags&ACB_PWNOTREQ) ) {
|
||||
acb_flags |= ACB_DISABLED;
|
||||
pdb_set_acct_ctrl( sam_acct, acb_flags, PDB_SET );
|
||||
pdb_set_init_flags(sam_acct, PDB_ACCTCTRL, PDB_SET);
|
||||
pdb_set_acct_ctrl( sam_acct, acb_flags, PDB_CHANGED );
|
||||
}
|
||||
|
||||
/** @todo This is where a 're-read on update' should be done */
|
||||
|
Loading…
Reference in New Issue
Block a user