summaryrefslogtreecommitdiff
path: root/fetch.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <junkio@cox.net>2006-05-31 14:23:58 -0700
committerLibravatar Junio C Hamano <junkio@cox.net>2006-05-31 14:23:58 -0700
commit422dfaf079eec92ec75ef8f766d66404433ad0b1 (patch)
tree1e3f4b1904b4478b79c638a35e0886fc88c07f44 /fetch.c
parentMerge branch 'master' into next (diff)
parenttree_entry(): new tree-walking helper function (diff)
downloadtgif-422dfaf079eec92ec75ef8f766d66404433ad0b1.tar.xz
Merge branch 'lt/tree-2' into next
* lt/tree-2: tree_entry(): new tree-walking helper function
Diffstat (limited to 'fetch.c')
-rw-r--r--fetch.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/fetch.c b/fetch.c
index b03c2012ef..e9347bafeb 100644
--- a/fetch.c
+++ b/fetch.c
@@ -39,25 +39,19 @@ static int process(struct object *obj);
static int process_tree(struct tree *tree)
{
struct tree_desc desc;
+ struct name_entry entry;
if (parse_tree(tree))
return -1;
desc.buf = tree->buffer;
desc.size = tree->size;
- while (desc.size) {
- unsigned mode;
- const char *name;
- const unsigned char *sha1;
-
- sha1 = tree_entry_extract(&desc, &name, &mode);
- update_tree_entry(&desc);
-
- if (S_ISDIR(mode)) {
- struct tree *tree = lookup_tree(sha1);
+ while (tree_entry(&desc, &entry)) {
+ if (S_ISDIR(entry.mode)) {
+ struct tree *tree = lookup_tree(entry.sha1);
process_tree(tree);
} else {
- struct blob *blob = lookup_blob(sha1);
+ struct blob *blob = lookup_blob(entry.sha1);
process(&blob->object);
}
}