Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
builtin/read-tree: convert to struct object_id
author
brian m. carlson
<sandals@crustytoothpaste.net>
Sat, 6 May 2017 22:10:30 +0000
(22:10 +0000)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 8 May 2017 06:12:58 +0000
(15:12 +0900)
This is a caller of parse_tree_indirect, which must be converted in
order to convert parse_object.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/read-tree.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
de37d50
)
diff --git
a/builtin/read-tree.c
b/builtin/read-tree.c
index 23e212ee8c5b2d26f03ac6be2b822a87ad06c233..92eff23e45cbfdb83eb8dbab72e1471923c9a201 100644
(file)
--- a/
builtin/read-tree.c
+++ b/
builtin/read-tree.c
@@
-23,13
+23,13
@@
static int read_empty;
static struct tree *trees[MAX_UNPACK_TREES];
static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
static struct tree *trees[MAX_UNPACK_TREES];
static int recurse_submodules = RECURSE_SUBMODULES_DEFAULT;
-static int list_tree(
unsigned char *sha1
)
+static int list_tree(
struct object_id *oid
)
{
struct tree *tree;
if (nr_trees >= MAX_UNPACK_TREES)
die("I cannot read more than %d trees", MAX_UNPACK_TREES);
{
struct tree *tree;
if (nr_trees >= MAX_UNPACK_TREES)
die("I cannot read more than %d trees", MAX_UNPACK_TREES);
- tree = parse_tree_indirect(
sha1
);
+ tree = parse_tree_indirect(
oid->hash
);
if (!tree)
return -1;
trees[nr_trees++] = tree;
if (!tree)
return -1;
trees[nr_trees++] = tree;
@@
-121,7
+121,7
@@
static struct lock_file lock_file;
int cmd_read_tree(int argc, const char **argv, const char *unused_prefix)
{
int i, stage = 0;
int cmd_read_tree(int argc, const char **argv, const char *unused_prefix)
{
int i, stage = 0;
-
unsigned char sha1[20]
;
+
struct object_id oid
;
struct tree_desc t[MAX_UNPACK_TREES];
struct unpack_trees_options opts;
int prefix_set = 0;
struct tree_desc t[MAX_UNPACK_TREES];
struct unpack_trees_options opts;
int prefix_set = 0;
@@
-204,9
+204,9
@@
int cmd_read_tree(int argc, const char **argv, const char *unused_prefix)
for (i = 0; i < argc; i++) {
const char *arg = argv[i];
for (i = 0; i < argc; i++) {
const char *arg = argv[i];
- if (get_
sha1(arg, sha1
))
+ if (get_
oid(arg, &oid
))
die("Not a valid object name %s", arg);
die("Not a valid object name %s", arg);
- if (list_tree(
sha1
) < 0)
+ if (list_tree(
&oid
) < 0)
die("failed to unpack tree object %s", arg);
stage++;
}
die("failed to unpack tree object %s", arg);
stage++;
}