X-Git-Url: https://gitweb.ps.run/ps-cgit/blobdiff_plain/329381dfe45d37cb94847ee92ebe58f2d6c02a9d..d85e8a9810cbfbe5cfe80509a7b47cb39483e6ac:/ui-clone.c?ds=inline diff --git a/ui-clone.c b/ui-clone.c index f7b0b04..bc98980 100644 --- a/ui-clone.c +++ b/ui-clone.c @@ -11,20 +11,21 @@ #include "ui-clone.h" #include "html.h" #include "ui-shared.h" +#include "packfile.h" static int print_ref_info(const char *refname, const struct object_id *oid, int flags, void *cb_data) { struct object *obj; - if (!(obj = parse_object(oid->hash))) + if (!(obj = parse_object(oid))) return 0; htmlf("%s\t%s\n", oid_to_hex(oid), refname); if (obj->type == OBJ_TAG) { if (!(obj = deref_tag(obj, refname, 0))) return 0; - htmlf("%s\t%s^{}\n", sha1_to_hex(obj->sha1), refname); + htmlf("%s\t%s^{}\n", oid_to_hex(&obj->oid), refname); } return 0; }