summaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
Diffstat (limited to 'contrib')
-rw-r--r--contrib/untar.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/untar.c b/contrib/untar.c
index e4d3a3fb..4d10c264 100644
--- a/contrib/untar.c
+++ b/contrib/untar.c
@@ -82,7 +82,7 @@ create_dir(char *pathname, int mode)
pathname[strlen(pathname) - 1] = '\0';
/* Try creating the directory. */
- #if defined(_WIN32)
+ #if defined(_WIN32) && !defined(__CYGWIN__)
r = _mkdir(pathname);
#else
r = mkdir(pathname, mode);
@@ -95,7 +95,7 @@ create_dir(char *pathname, int mode)
*p = '\0';
create_dir(pathname, 0755);
*p = '/';
- #if defined(_WIN32)
+ #if defined(_WIN32) && !defined(__CYGWIN__)
r = _mkdir(pathname);
#else
r = mkdir(pathname, mode);