X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=builtin-rev-list.c;h=e885624255ac8e1007df797d339e3e81020f95a2;hb=87cefaaff958e30204a21757012a46883175c00f;hp=17c04b962d82701ee6fd17ad15e368e1c283af25;hpb=2befe6feb99da9fb73b9e8c218b414419ef947ec;p=git.git diff --git a/builtin-rev-list.c b/builtin-rev-list.c index 17c04b96..e8856242 100644 --- a/builtin-rev-list.c +++ b/builtin-rev-list.c @@ -135,9 +135,9 @@ static struct object_list **process_tree(struct tree *tree, while (tree_entry(&desc, &entry)) { if (S_ISDIR(entry.mode)) - p = process_tree(lookup_tree(entry.sha1), p, &me, name); + p = process_tree(lookup_tree(entry.sha1), p, &me, entry.path); else - p = process_blob(lookup_blob(entry.sha1), p, &me, name); + p = process_blob(lookup_blob(entry.sha1), p, &me, entry.path); } free(tree->buffer); tree->buffer = NULL;