summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorClemens Buchacher <drizzd@aon.at>2011-09-04 12:42:01 +0200
committerJunio C Hamano <gitster@pobox.com>2011-09-12 14:38:32 -0700
commitf950eb956092831730182daa7160eaa352277fa9 (patch)
tree472380ca3f56161917291d4902e53af4ee276668 /builtin
parent4a085b16f430bcfe1b6e2e84e7a569f4e191e906 (diff)
downloadgit-f950eb956092831730182daa7160eaa352277fa9.tar.gz
rename pathspec_prefix() to common_prefix() and move to dir.[ch]
Also make common_prefix_len() static as this refactoring makes dir.c itself the only caller of this helper function. Signed-off-by: Clemens Buchacher <drizzd@aon.at> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/commit.c2
-rw-r--r--builtin/ls-files.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/builtin/commit.c b/builtin/commit.c
index 50bacd68e2..1e8e0acb53 100644
--- a/builtin/commit.c
+++ b/builtin/commit.c
@@ -257,7 +257,7 @@ static int list_paths(struct string_list *list, const char *with_tree,
m = xcalloc(1, i);
if (with_tree) {
- char *max_prefix = pathspec_prefix(pattern);
+ char *max_prefix = common_prefix(pattern);
overlay_tree_on_cache(with_tree, max_prefix ? max_prefix : prefix);
free(max_prefix);
}
diff --git a/builtin/ls-files.c b/builtin/ls-files.c
index 19e53cc881..0956bb51b9 100644
--- a/builtin/ls-files.c
+++ b/builtin/ls-files.c
@@ -541,7 +541,7 @@ int cmd_ls_files(int argc, const char **argv, const char *cmd_prefix)
strip_trailing_slash_from_submodules();
/* Find common prefix for all pathspec's */
- max_prefix = pathspec_prefix(pathspec);
+ max_prefix = common_prefix(pathspec);
max_prefix_len = max_prefix ? strlen(max_prefix) : 0;
/* Treat unmatching pathspec elements as errors */