From b931aa5a48f9fb3c26a565d5f19866923f13b692 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Fri, 26 May 2006 18:59:17 +0200 Subject: [PATCH] Call builtin ls-tree in git-cat-file -p Signed-off-by: Petr Baudis Signed-off-by: Junio C Hamano --- builtin-cat-file.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin-cat-file.c b/builtin-cat-file.c index 8ab136e981..4d36817e5f 100644 --- a/builtin-cat-file.c +++ b/builtin-cat-file.c @@ -141,7 +141,7 @@ int cmd_cat_file(int argc, const char **argv, char **envp) /* custom pretty-print here */ if (!strcmp(type, tree_type)) - return execl_git_cmd("ls-tree", argv[2], NULL); + return cmd_ls_tree(2, argv + 1, NULL); buf = read_sha1_file(sha1, type, &size); if (!buf) -- 2.11.4.GIT