X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=http-push.c;h=0353f9f5143d7fff3a2b4b11d02375255258319b;hb=9103a75c584dd6edddfcb3004974a1bb48d9214c;hp=e36561a6db0752f12fe22883f81489d62d81a4ca;hpb=94760948f17e1902e071172677e0615da6e03d90;p=thirdparty%2Fgit.git diff --git a/http-push.c b/http-push.c index e36561a6db..0353f9f514 100644 --- a/http-push.c +++ b/http-push.c @@ -723,7 +723,7 @@ static void one_remote_object(const struct object_id *oid) { struct object *obj; - obj = lookup_object(the_repository, oid->hash); + obj = lookup_object(the_repository, oid); if (!obj) obj = parse_object(the_repository, oid); @@ -1432,7 +1432,7 @@ static void one_remote_ref(const char *refname) * may be required for updating server info later. */ if (repo->can_update_info_refs && !has_object_file(&ref->old_oid)) { - obj = lookup_unknown_object(ref->old_oid.hash); + obj = lookup_unknown_object(&ref->old_oid); fprintf(stderr, " fetch %s for %s\n", oid_to_hex(&ref->old_oid), refname); add_fetch_request(obj);