From 022a45e0848d4cc517889aaf55573bf5f5004662 Mon Sep 17 00:00:00 2001 From: Sven Strickroth Date: Tue, 25 Jun 2013 16:43:15 +0200 Subject: [PATCH] Revert "Work around reparse point stat issues" This reverts commit 32c12ea6a9cafd76a746af2e2be9366c95752f5b. --- src/fileops.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/fileops.c b/src/fileops.c index d5f6acfad..1f58fa5cd 100644 --- a/src/fileops.c +++ b/src/fileops.c @@ -350,8 +350,7 @@ int git_futils_mkdir( int tmp_errno = errno; /* ignore error if directory already exists */ - if (p_stat(make_path.ptr, &st) < 0 || - !(S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))) { + if (p_stat(make_path.ptr, &st) < 0 || !S_ISDIR(st.st_mode)) { errno = tmp_errno; giterr_set(GITERR_OS, "Failed to make directory '%s'", make_path.ptr); goto done;