summaryrefslogtreecommitdiffstats
path: root/source/smbd/vfs.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2004-04-30 06:33:58 +0000
committerTim Potter <tpot@samba.org>2004-04-30 06:33:58 +0000
commit53209b8028f55af7759dbeaa84876f8b3e7c28cc (patch)
treea10cbd5309672d8cdb218e5cd1d67d4c08ed40e2 /source/smbd/vfs.c
parentdce54a330156e6fa63f9c36d0fad1983e8cc735d (diff)
downloadsamba-53209b8028f55af7759dbeaa84876f8b3e7c28cc.tar.gz
samba-53209b8028f55af7759dbeaa84876f8b3e7c28cc.tar.xz
samba-53209b8028f55af7759dbeaa84876f8b3e7c28cc.zip
r421: Fix debug message. Closes bugzilla #1305.
Diffstat (limited to 'source/smbd/vfs.c')
-rw-r--r--source/smbd/vfs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/vfs.c b/source/smbd/vfs.c
index 4f3234775a2..533220e7dfb 100644
--- a/source/smbd/vfs.c
+++ b/source/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 {