From 848b86290d6539f250572e348973fc8aa6b627fd Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Fri, 30 Apr 2004 06:33:58 +0000 Subject: r421: Fix debug message. Closes bugzilla #1305. (This used to be commit 6654b03cbd08e8bbf3f9cae117b84a820c8857b2) --- source3/smbd/vfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index 4f3234775a..533220e7df 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -820,7 +820,7 @@ static BOOL readlink_check(connection_struct *conn, const char *dir, char *name) } if (SMB_VFS_READLINK(conn, name, flink, sizeof(pstring) -1) != -1) { - DEBUG(3,("reduce_name: file path name %s is a symlink\nChecking it's path\n", name)); + DEBUG(3,("readlink_check: file path name %s is a symlink\nChecking it's path\n", name)); if (*flink == '/') { pstrcpy(cleanlink, flink); } else { -- cgit