summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2021-04-06 14:47:39 +0200
committerRalph Boehme <slow@samba.org>2021-04-06 14:39:46 +0000
commit11aac9d0433ab59740c40712c3782f1cf4ac0418 (patch)
treef6160d13606994119c6ba199483c3b903c9938ec /source3
parente742661bd2507d39dfa47e40531dc1dca636cbbe (diff)
downloadsamba-11aac9d0433ab59740c40712c3782f1cf4ac0418.tar.gz
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 <slow@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Tue Apr 6 14:39:46 UTC 2021 on sn-devel-184
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/filename.c6
1 files changed, 3 insertions, 3 deletions
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;
}