1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

"user doesn't exist" isn't worthy of a level 1 debug. Make it level 3.

(This used to be commit 339e3982bc)
This commit is contained in:
Andrew Bartlett 2002-02-27 12:59:05 +00:00
parent b07cdd68b5
commit 90d264fa76

View File

@ -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;
}