From b3fccd10a63058f982082887cefd77af633f516c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Mon, 13 Sep 2010 16:54:21 -0700 Subject: 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. --- source3/smbd/vfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- cgit