diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-02-27 12:59:05 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-02-27 12:59:05 +0000 |
commit | 90d264fa76e3608027aa7e854c40804d3e99c84f (patch) | |
tree | 415a3686963a867400ea4d84f641b39666a83b59 /source3/auth/auth_sam.c | |
parent | b07cdd68b5c6d446fbb4fddd90f9a9d56396767c (diff) | |
download | samba-90d264fa76e3608027aa7e854c40804d3e99c84f.tar.gz samba-90d264fa76e3608027aa7e854c40804d3e99c84f.tar.bz2 samba-90d264fa76e3608027aa7e854c40804d3e99c84f.zip |
"user doesn't exist" isn't worthy of a level 1 debug. Make it level 3.
(This used to be commit 339e3982bc1d2998022545e02456ec35c3b278a8)
Diffstat (limited to 'source3/auth/auth_sam.c')
-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 8fe9dfbdc8..6753951c89 100644 --- a/source3/auth/auth_sam.c +++ b/source3/auth/auth_sam.c @@ -366,7 +366,7 @@ static NTSTATUS check_sam_security(const struct auth_context *auth_context, if (ret == False) { - DEBUG(1,("Couldn't find user '%s' in passdb file.\n", user_info->internal_username.str)); + DEBUG(3,("Couldn't find user '%s' in passdb file.\n", user_info->internal_username.str)); pdb_free_sam(&sampass); return NT_STATUS_NO_SUCH_USER; } |