Commit 022a45e0 by Sven Strickroth

Revert "Work around reparse point stat issues"

This reverts commit 32c12ea6.
parent eddc1f1e
...@@ -350,8 +350,7 @@ int git_futils_mkdir( ...@@ -350,8 +350,7 @@ int git_futils_mkdir(
int tmp_errno = errno; int tmp_errno = errno;
/* ignore error if directory already exists */ /* ignore error if directory already exists */
if (p_stat(make_path.ptr, &st) < 0 || if (p_stat(make_path.ptr, &st) < 0 || !S_ISDIR(st.st_mode)) {
!(S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode))) {
errno = tmp_errno; errno = tmp_errno;
giterr_set(GITERR_OS, "Failed to make directory '%s'", make_path.ptr); giterr_set(GITERR_OS, "Failed to make directory '%s'", make_path.ptr);
goto done; goto done;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment