diff options
Diffstat (limited to 'parsing.c')
-rw-r--r-- | parsing.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -139,7 +139,7 @@ struct commitinfo *cgit_parse_commit(struct commit *commit) | |||
139 | return ret; | 139 | return ret; |
140 | 140 | ||
141 | if (!skip_prefix(p, "tree ", &p)) | 141 | if (!skip_prefix(p, "tree ", &p)) |
142 | die("Bad commit: %s", sha1_to_hex(commit->object.sha1)); | 142 | die("Bad commit: %s", oid_to_hex(&commit->object.oid)); |
143 | p += sha1hex_len + 1; | 143 | p += sha1hex_len + 1; |
144 | 144 | ||
145 | while (skip_prefix(p, "parent ", &p)) | 145 | while (skip_prefix(p, "parent ", &p)) |
@@ -199,7 +199,7 @@ struct taginfo *cgit_parse_tag(struct tag *tag) | |||
199 | const char *p; | 199 | const char *p; |
200 | struct taginfo *ret = NULL; | 200 | struct taginfo *ret = NULL; |
201 | 201 | ||
202 | data = read_sha1_file(tag->object.sha1, &type, &size); | 202 | data = read_sha1_file(tag->object.oid.hash, &type, &size); |
203 | if (!data || type != OBJ_TAG) | 203 | if (!data || type != OBJ_TAG) |
204 | goto cleanup; | 204 | goto cleanup; |
205 | 205 | ||