X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=help.c;h=e8db31f60f010887ccb3a943344da566e0937403;hb=28754ab5f0ce9b4f6ca1641c3e10e2c68bd9b3fc;hp=294337e71c0c8f1c3e150dd0b566c04db96c013d;hpb=232d4537667e32230c855777444abbe732536ed9;p=git.git diff --git a/help.c b/help.c index 294337e71..e8db31f60 100644 --- a/help.c +++ b/help.c @@ -126,8 +126,8 @@ static int is_executable(const char *name) !S_ISREG(st.st_mode)) return 0; -#ifdef __MINGW32__ - /* cannot trust the executable bit, peek into the file instead */ +#ifdef WIN32 +{ /* cannot trust the executable bit, peek into the file instead */ char buf[3] = { 0 }; int n; int fd = open(name, O_RDONLY); @@ -140,6 +140,7 @@ static int is_executable(const char *name) st.st_mode |= S_IXUSR; close(fd); } +} #endif return st.st_mode & S_IXUSR; }