cocci: apply the "cache.h" part of "the_repository.pending"
Apply the part of "the_repository.pending.cocci" pertaining to "cache.h". Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
7258e892d2
commit
d850b7a545
@ -228,7 +228,7 @@ static int show_tree_default(const struct object_id *oid, struct strbuf *base,
|
||||
return early;
|
||||
|
||||
printf("%06o %s %s\t", mode, type_name(object_type(mode)),
|
||||
find_unique_abbrev(oid, options->abbrev));
|
||||
repo_find_unique_abbrev(the_repository, oid, options->abbrev));
|
||||
show_tree_common_default_long(options, base, pathname, base->len);
|
||||
return recurse;
|
||||
}
|
||||
@ -259,7 +259,8 @@ static int show_tree_long(const struct object_id *oid, struct strbuf *base,
|
||||
}
|
||||
|
||||
printf("%06o %s %s %7s\t", mode, type_name(type),
|
||||
find_unique_abbrev(oid, options->abbrev), size_text);
|
||||
repo_find_unique_abbrev(the_repository, oid, options->abbrev),
|
||||
size_text);
|
||||
show_tree_common_default_long(options, base, pathname, base->len);
|
||||
return recurse;
|
||||
}
|
||||
@ -310,7 +311,7 @@ static int show_tree_object(const struct object_id *oid, struct strbuf *base,
|
||||
if (early >= 0)
|
||||
return early;
|
||||
|
||||
str = find_unique_abbrev(oid, options->abbrev);
|
||||
str = repo_find_unique_abbrev(the_repository, oid, options->abbrev);
|
||||
if (options->null_termination) {
|
||||
fputs(str, stdout);
|
||||
fputc('\0', stdout);
|
||||
@ -433,7 +434,7 @@ int cmd_ls_tree(int argc, const char **argv, const char *prefix)
|
||||
ls_tree_usage, ls_tree_options);
|
||||
if (argc < 1)
|
||||
usage_with_options(ls_tree_usage, ls_tree_options);
|
||||
if (get_oid(argv[0], &oid))
|
||||
if (repo_get_oid(the_repository, argv[0], &oid))
|
||||
die("Not a valid object name %s", argv[0]);
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user