diff options
author | Michael Adam <obnox@samba.org> | 2010-01-06 13:40:58 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2010-01-07 11:07:57 +0100 |
commit | 5ad1b7e0c5aa7c8e0a0d55c2456e9d6354dc9bcc (patch) | |
tree | b90b4378e84ced4005e0d95190a7c6e1f9b0cf8c | |
parent | 970317c413eae52af9976e5652362412dd3038e3 (diff) | |
download | samba-5ad1b7e0c5aa7c8e0a0d55c2456e9d6354dc9bcc.tar.gz samba-5ad1b7e0c5aa7c8e0a0d55c2456e9d6354dc9bcc.tar.bz2 samba-5ad1b7e0c5aa7c8e0a0d55c2456e9d6354dc9bcc.zip |
s3:auth:check_sam_security: fix a leading tab/ws mixup
Michael
-rw-r--r-- | source3/auth/auth_sam.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/auth/auth_sam.c b/source3/auth/auth_sam.c index dd4a465e7d..7835b18183 100644 --- a/source3/auth/auth_sam.c +++ b/source3/auth/auth_sam.c @@ -385,7 +385,7 @@ static NTSTATUS check_sam_security(const struct auth_context *auth_context, if(!NT_STATUS_IS_OK(pdb_update_sam_account(sampass))) DEBUG(1, ("Failed to modify entry.\n")); unbecome_root(); - } + } nt_status = sam_account_ok(mem_ctx, sampass, user_info); |