summaryrefslogtreecommitdiff
path: root/source3/auth/auth_sam.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-08-17 06:06:56 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-08-17 06:06:56 +0000
commita0171765ff080ea0510f8c4475348e6b33044b9b (patch)
tree5d72056c79ed53295af6ee37bdcd28591d4d9cdb /source3/auth/auth_sam.c
parent90d2460cf0e644e82650763c502332e5adad27e7 (diff)
downloadsamba-a0171765ff080ea0510f8c4475348e6b33044b9b.tar.gz
samba-a0171765ff080ea0510f8c4475348e6b33044b9b.tar.bz2
samba-a0171765ff080ea0510f8c4475348e6b33044b9b.zip
Style cleanup for the last vuid change.
Style, doco and DEBUG() fixes for auth_smbpasswd.c (In particular for the account control call). Andrew Bartlett (This used to be commit 3d91c119420973d7dd1af416a1e26efa113dc626)
Diffstat (limited to 'source3/auth/auth_sam.c')
-rw-r--r--source3/auth/auth_sam.c13
1 files changed, 8 insertions, 5 deletions
diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c
index 927a262dc6..27cb801c33 100644
--- a/source3/auth/auth_sam.c
+++ b/source3/auth/auth_sam.c
@@ -112,14 +112,17 @@ static BOOL smb_pwd_check_ntlmv2(const uchar *password, size_t pwd_len,
uint32 smb_password_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_info *user_info, auth_serversupplied_info *server_info)
{
uint8 *nt_pw, *lm_pw;
+ uint16 acct_ctrl;
+ acct_ctrl = pdb_get_acct_ctrl(sampass);
+
/* Quit if the account was disabled. */
- if(pdb_get_acct_ctrl(sampass) & ACB_DISABLED) {
+ if(acct_ctrl & ACB_DISABLED) {
DEBUG(1,("Account for user '%s' was disabled.\n", user_info->smb_username.str));
return(NT_STATUS_ACCOUNT_DISABLED);
}
- if (pdb_get_acct_ctrl(sampass) & ACB_PWNOTREQ)
+ if (acct_ctrl & ACB_PWNOTREQ)
{
if (lp_null_passwords())
{
@@ -155,7 +158,7 @@ uint32 smb_password_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_info *user_
{
return NT_STATUS_NOPROBLEMO;
}
- DEBUG(4,("smb_password_ok: NT MD4 password check failed\n"));
+ DEBUG(4,("smb_password_ok: NTLMv2 password check failed\n"));
} else if (lp_ntlm_auth() && (user_info->nt_resp.len == 24 )) {
/* We have the NT MD4 hash challenge available - see if we can
@@ -195,8 +198,8 @@ uint32 smb_password_ok(SAM_ACCOUNT *sampass, const auth_usersupplied_info *user_
/****************************************************************************
check if a username/password is OK assuming the password is a 24 byte
-SMB hash
-return True if the password is correct, False otherwise
+SMB hash supplied in the user_info structure
+return an NT_STATUS constant.
****************************************************************************/
uint32 check_smbpasswd_security(const auth_usersupplied_info *user_info, auth_serversupplied_info *server_info)