about summary refs log tree commit diff stats
path: root/ui-tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-tree.c')
-rw-r--r--ui-tree.c13
1 files changed, 5 insertions, 8 deletions
diff --git a/ui-tree.c b/ui-tree.c index d713553..aebe145 100644 --- a/ui-tree.c +++ b/ui-tree.c
@@ -95,15 +95,13 @@ static void print_object(const unsigned char *sha1, char *path, const char *base
95 95
96 type = sha1_object_info(sha1, &size); 96 type = sha1_object_info(sha1, &size);
97 if (type == OBJ_BAD) { 97 if (type == OBJ_BAD) {
98 cgit_print_error(fmt("Bad object name: %s", 98 cgit_print_error("Bad object name: %s", sha1_to_hex(sha1));
99 sha1_to_hex(sha1)));
100 return; 99 return;
101 } 100 }
102 101
103 buf = read_sha1_file(sha1, &type, &size); 102 buf = read_sha1_file(sha1, &type, &size);
104 if (!buf) { 103 if (!buf) {
105 cgit_print_error(fmt("Error reading object %s", 104 cgit_print_error("Error reading object %s", sha1_to_hex(sha1));
106 sha1_to_hex(sha1)));
107 return; 105 return;
108 } 106 }
109 107
@@ -209,8 +207,7 @@ static void ls_tree(const unsigned char *sha1, char *path, struct walk_tree_cont
209 207
210 tree = parse_tree_indirect(sha1); 208 tree = parse_tree_indirect(sha1);
211 if (!tree) { 209 if (!tree) {
212 cgit_print_error(fmt("Not a tree object: %s", 210 cgit_print_error("Not a tree object: %s", sha1_to_hex(sha1));
213 sha1_to_hex(sha1)));
214 return; 211 return;
215 } 212 }
216 213
@@ -273,12 +270,12 @@ void cgit_print_tree(const char *rev, char *path)
273 rev = ctx.qry.head; 270 rev = ctx.qry.head;
274 271
275 if (get_sha1(rev, sha1)) { 272 if (get_sha1(rev, sha1)) {
276 cgit_print_error(fmt("Invalid revision name: %s", rev)); 273 cgit_print_error("Invalid revision name: %s", rev);
277 return; 274 return;
278 } 275 }
279 commit = lookup_commit_reference(sha1); 276 commit = lookup_commit_reference(sha1);
280 if (!commit || parse_commit(commit)) { 277 if (!commit || parse_commit(commit)) {
281 cgit_print_error(fmt("Invalid commit reference: %s", rev)); 278 cgit_print_error("Invalid commit reference: %s", rev);
282 return; 279 return;
283 } 280 }
284 281