mirror of
https://github.com/samba-team/samba.git
synced 2025-01-03 01:18:10 +03:00
s3:notify: don't log user_can_stat_name_under_fsp with level 0 for OBJECT_NAME_NOT_FOUND
Signed-off-by: Stefan Metzmacher <metze@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
parent
c49c48afe0
commit
e6f92edba6
@ -651,9 +651,14 @@ static bool user_can_stat_name_under_fsp(files_struct *fsp, const char *name)
|
||||
0,
|
||||
&fname);
|
||||
if (!NT_STATUS_IS_OK(status)) {
|
||||
DBG_ERR("synthetic_pathref failed for %s, error %s\n",
|
||||
filepath,
|
||||
nt_errstr(status));
|
||||
int dbg_lvl = DBGLVL_ERR;
|
||||
if (NT_STATUS_EQUAL(status, NT_STATUS_OBJECT_NAME_NOT_FOUND)) {
|
||||
dbg_lvl = DBGLVL_DEBUG;
|
||||
}
|
||||
DBG_PREFIX(dbg_lvl, (
|
||||
"synthetic_pathref failed for %s, error %s\n",
|
||||
filepath,
|
||||
nt_errstr(status)));
|
||||
TALLOC_FREE(fname);
|
||||
TALLOC_FREE(filepath);
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user