diff options
author | Jeremy Allison <jra@samba.org> | 2010-09-13 16:54:21 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-09-13 16:54:21 -0700 |
commit | b3fccd10a63058f982082887cefd77af633f516c (patch) | |
tree | 5680acbe0a7668037ffb566c80e8f8daeae4bcd4 | |
parent | 69db4b4ccf051b05517e6eb9039ab48f90608075 (diff) | |
download | samba-b3fccd10a63058f982082887cefd77af633f516c.tar.gz samba-b3fccd10a63058f982082887cefd77af633f516c.tar.bz2 samba-b3fccd10a63058f982082887cefd77af633f516c.zip |
Fix bug 7409 - Thousands of reduce_name: couldn't get realpath.
Don't log this at level 1 - every EACCES will generate one.
Thanks to muehlfeld@medizinische-genetik.de for pointing this out.
Jeremy.
-rw-r--r-- | source3/smbd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index d561a6b94f..d516456f8d 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -930,7 +930,7 @@ NTSTATUS check_reduced_name(connection_struct *conn, const char *fname) break; } default: - DEBUG(1,("check_reduced_name: couldn't get " + DEBUG(3,("check_reduced_name: couldn't get " "realpath for %s\n", fname)); return map_nt_error_from_unix(errno); } |