From 1f7805348f1e5b718a09018b849a54c1b4124e09 Mon Sep 17 00:00:00 2001 From: Eric Biggers Date: Fri, 22 Mar 2013 01:10:05 -0500 Subject: [PATCH] Fix symlink.c conditional --- src/symlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/symlink.c b/src/symlink.c index 31d4e7c5..22436cf9 100644 --- a/src/symlink.c +++ b/src/symlink.c @@ -31,7 +31,7 @@ /* None of this file is ever needed in Win32 builds because the reparse point * buffers are not parsed. */ -#if !defined(__WIN32__) && !defined(WITH_FUSE) +#if !defined(__WIN32__) || defined(WITH_FUSE) /* * Find the symlink target of a symbolic link or junction point in the WIM. -- 2.43.0