summaryrefslogtreecommitdiff
path: root/git-compat-util.h
diff options
context:
space:
mode:
authorJohannes Schindelin <johannes.schindelin@gmx.de>2021-02-12 14:49:17 (GMT)
committerJohannes Schindelin <johannes.schindelin@gmx.de>2021-02-12 14:49:17 (GMT)
commit804963848e325ff6f4213e53aeda6ef831574e48 (patch)
tree4d823f1bca28046972ceb9ff3962639df9953b77 /git-compat-util.h
parent041bc65923e13313ca1b77681c3b2950b5e0a163 (diff)
parent9fb2a1fb08330795955dcd5af74d2c64ba258d59 (diff)
downloadgit-804963848e325ff6f4213e53aeda6ef831574e48.zip
git-804963848e325ff6f4213e53aeda6ef831574e48.tar.gz
git-804963848e325ff6f4213e53aeda6ef831574e48.tar.bz2
Sync with 2.19.6
* maint-2.19: Git 2.19.6 Git 2.18.5 Git 2.17.6 unpack_trees(): start with a fresh lstat cache run-command: invalidate lstat cache after a command finished checkout: fix bug that makes checkout follow symlinks in leading path
Diffstat (limited to 'git-compat-util.h')
-rw-r--r--git-compat-util.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h
index d17360e..a6ad745 100644
--- a/git-compat-util.h
+++ b/git-compat-util.h
@@ -353,6 +353,11 @@ static inline int noop_core_config(const char *var, const char *value, void *cb)
#define platform_core_config noop_core_config
#endif
+int lstat_cache_aware_rmdir(const char *path);
+#if !defined(__MINGW32__) && !defined(_MSC_VER)
+#define rmdir lstat_cache_aware_rmdir
+#endif
+
#ifndef has_dos_drive_prefix
static inline int git_has_dos_drive_prefix(const char *path)
{