Signed-off-by: Stefan Beller <[email protected]>
---
cache.h | 1 -
dir.c | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/cache.h b/cache.h
index 85a85f8b96..4b8e8c31fe 100644
--- a/cache.h
+++ b/cache.h
@@ -368,7 +368,6 @@ extern void free_name_hash(struct index_state *istate);
#define refresh_cache(flags) refresh_index(&the_index, (flags), NULL, NULL,
NULL)
#define ce_match_stat(ce, st, options) ie_match_stat(&the_index, (ce), (st),
(options))
#define ce_modified(ce, st, options) ie_modified(&the_index, (ce), (st),
(options))
-#define cache_dir_exists(name, namelen) index_dir_exists(&the_index, (name),
(namelen))
#endif
enum object_type {
diff --git a/dir.c b/dir.c
index 0327832e53..63edaec2ef 100644
--- a/dir.c
+++ b/dir.c
@@ -1266,7 +1266,7 @@ static enum exist_status
directory_exists_in_index_icase(const char *dirname, in
{
struct cache_entry *ce;
- if (cache_dir_exists(dirname, len))
+ if (index_dir_exists(&the_index, dirname, len))
return index_directory;
ce = index_file_exists(&the_index, dirname, len, ignore_case);
--
2.13.0.rc1.39.ga6db8bfa24