Commit 848b8629 authored by Tim Potter's avatar Tim Potter Committed by Gerald (Jerry) Carter
Browse files

r421: Fix debug message. Closes bugzilla #1305.

(This used to be commit 6654b03cbd08e8bbf3f9cae117b84a820c8857b2)
parent 9139b892
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 {