From: Ralph Boehme Date: Tue, 6 Apr 2021 12:47:39 +0000 (+0200) Subject: smbd: reduce loglevel for failed openat_pathref_fsp() calls X-Git-Tag: tevent-0.11.0~1320 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11aac9d0433ab59740c40712c3782f1cf4ac0418;p=thirdparty%2Fsamba.git smbd: reduce loglevel for failed openat_pathref_fsp() calls BUG: https://bugzilla.samba.org/show_bug.cgi?id=14685 CI: https://gitlab.com/samba-team/samba/-/merge_requests/1884 RN: Log clutter from filename_convert_internal() Signed-off-by: Ralph Boehme Reviewed-by: Andreas Schneider Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Tue Apr 6 14:39:46 UTC 2021 on sn-devel-184 --- diff --git a/source3/smbd/filename.c b/source3/smbd/filename.c index 3560837ad1e..f2b837d0263 100644 --- a/source3/smbd/filename.c +++ b/source3/smbd/filename.c @@ -2026,9 +2026,9 @@ static NTSTATUS filename_convert_internal(TALLOC_CTX *ctx, } } if (!NT_STATUS_IS_OK(status)) { - DBG_ERR("open_pathref_fsp [%s] failed: %s\n", - smb_fname_str_dbg(smb_fname), - nt_errstr(status)); + DBG_DEBUG("open_pathref_fsp [%s] failed: %s\n", + smb_fname_str_dbg(smb_fname), + nt_errstr(status)); return status; }