From aa15c8a5bfdb11bccd9927f9bb77808d55c4356e Mon Sep 17 00:00:00 2001 From: Nathan Letwory Date: Wed, 14 Jul 2010 22:16:56 +0000 Subject: [PATCH] S_ISDIR and S_ISREG were checking completely wrong for directory and regular file bits. --- source/blender/blenlib/BLI_winstuff.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/blender/blenlib/BLI_winstuff.h b/source/blender/blenlib/BLI_winstuff.h index 957fdb2b017..e8689895735 100644 --- a/source/blender/blenlib/BLI_winstuff.h +++ b/source/blender/blenlib/BLI_winstuff.h @@ -74,10 +74,10 @@ extern "C" { #define MAXPATHLEN MAX_PATH #ifndef S_ISREG -#define S_ISREG(x) ((x&S_IFMT) == S_IFREG) +#define S_ISREG(x) (((x)&_S_IFREG) == _S_IFREG) #endif #ifndef S_ISDIR -#define S_ISDIR(x) ((x&S_IFMT) == S_IFDIR) +#define S_ISDIR(x) (((x)&_S_IFDIR) == _S_IFDIR) #endif /* defines for using ISO C++ conformant names */