From: Eric Biggers Date: Fri, 22 Mar 2013 06:10:05 +0000 (-0500) Subject: Fix symlink.c conditional X-Git-Tag: v1.3.1 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=refs%2Ftags%2Fv1.3.1 Fix symlink.c conditional --- 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.