refs: fix valgrind suppression file
[gitweb.git] / name-hash.c
index 9a3bd3f9a629e2cd37dfb1277ccb9ae190c947c8..97444d02010e13de1eab9abe6f1fc71287658faf 100644 (file)
@@ -115,7 +115,7 @@ static int cache_entry_cmp(const struct cache_entry *ce1,
 {
        /*
         * For remove_name_hash, find the exact entry (pointer equality); for
-        * index_name_exists, find all entries with matching hash code and
+        * index_file_exists, find all entries with matching hash code and
         * decide whether the entry matches in same_name.
         */
        return remove ? !(ce1 == ce2) : 0;
@@ -227,13 +227,6 @@ struct cache_entry *index_file_exists(struct index_state *istate, const char *na
        return NULL;
 }
 
-struct cache_entry *index_name_exists(struct index_state *istate, const char *name, int namelen, int icase)
-{
-       if (namelen > 0 && name[namelen - 1] == '/')
-               return index_dir_exists(istate, name, namelen - 1);
-       return index_file_exists(istate, name, namelen, icase);
-}
-
 void free_name_hash(struct index_state *istate)
 {
        if (!istate->name_hash_initialized)