summaryrefslogtreecommitdiff
path: root/source3/smbd/vfs.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-04-30 06:33:58 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 10:51:23 -0500
commit848b86290d6539f250572e348973fc8aa6b627fd (patch)
tree0e85636826c6bd16972b8afed9c12f00066e48c9 /source3/smbd/vfs.c
parent9139b89259afaf3772bbbb92ea925d015d5850ad (diff)
downloadsamba-848b86290d6539f250572e348973fc8aa6b627fd.tar.gz
samba-848b86290d6539f250572e348973fc8aa6b627fd.tar.bz2
samba-848b86290d6539f250572e348973fc8aa6b627fd.zip
r421: Fix debug message. Closes bugzilla #1305.
(This used to be commit 6654b03cbd08e8bbf3f9cae117b84a820c8857b2)
Diffstat (limited to 'source3/smbd/vfs.c')
-rw-r--r--source3/smbd/vfs.c2
1 files changed, 1 insertions, 1 deletions
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 {