about summary refs log tree commit diff stats
path: root/ui-tag.c
diff options
context:
space:
mode:
Diffstat (limited to 'ui-tag.c')
-rw-r--r--ui-tag.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui-tag.c b/ui-tag.c index 2c96c37..f530224 100644 --- a/ui-tag.c +++ b/ui-tag.c
@@ -53,7 +53,7 @@ void cgit_print_tag(char *revname)
53 "Bad tag reference: %s", revname); 53 "Bad tag reference: %s", revname);
54 goto cleanup; 54 goto cleanup;
55 } 55 }
56 obj = parse_object(&oid); 56 obj = parse_object(the_repository, &oid);
57 if (!obj) { 57 if (!obj) {
58 cgit_print_error_page(500, "Internal server error", 58 cgit_print_error_page(500, "Internal server error",
59 "Bad object id: %s", oid_to_hex(&oid)); 59 "Bad object id: %s", oid_to_hex(&oid));
@@ -63,7 +63,7 @@ void cgit_print_tag(char *revname)
63 struct tag *tag; 63 struct tag *tag;
64 struct taginfo *info; 64 struct taginfo *info;
65 65
66 tag = lookup_tag(&oid); 66 tag = lookup_tag(the_repository, &oid);
67 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) { 67 if (!tag || parse_tag(tag) || !(info = cgit_parse_tag(tag))) {
68 cgit_print_error_page(500, "Internal server error", 68 cgit_print_error_page(500, "Internal server error",
69 "Bad tag object: %s", revname); 69 "Bad tag object: %s", revname);