remove match_pathspec() in favor of match_pathspec_depth()
[gitweb.git] / resolve-undo.c
index 639eb9c59f355e46bdd53cf13fd94e8a6a9537da..4b78e6f8b82002848b1d3472de870b74894b3d25 100644 (file)
@@ -173,7 +173,7 @@ void unmerge_marked_index(struct index_state *istate)
        }
 }
 
-void unmerge_index(struct index_state *istate, const char **pathspec)
+void unmerge_index(struct index_state *istate, const struct pathspec *pathspec)
 {
        int i;
 
@@ -182,7 +182,7 @@ void unmerge_index(struct index_state *istate, const char **pathspec)
 
        for (i = 0; i < istate->cache_nr; i++) {
                struct cache_entry *ce = istate->cache[i];
-               if (!match_pathspec(pathspec, ce->name, ce_namelen(ce), 0, NULL))
+               if (!match_pathspec_depth(pathspec, ce->name, ce_namelen(ce), 0, NULL))
                        continue;
                i = unmerge_index_entry_at(istate, i);
        }