X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=remote.c;h=38ca1353b9db8e25f4b105c3027f541c4c230426;hb=c251c83df276dc0bff4d008433268ad59b7a8df2;hp=bf9a47d95b636a4d3161128e6a20175e79315272;hpb=a9dbc179100b7119cb44eb5b4adcb47967f346a6;p=thirdparty%2Fgit.git diff --git a/remote.c b/remote.c index bf9a47d95b..38ca1353b9 100644 --- a/remote.c +++ b/remote.c @@ -1954,12 +1954,12 @@ int ref_newer(const struct object_id *new_oid, const struct object_id *old_oid) * Both new and old must be commit-ish and new is descendant of * old. Otherwise we require --force. */ - o = deref_tag(parse_object(old_oid->hash), NULL, 0); + o = deref_tag(parse_object(old_oid), NULL, 0); if (!o || o->type != OBJ_COMMIT) return 0; old = (struct commit *) o; - o = deref_tag(parse_object(new_oid->hash), NULL, 0); + o = deref_tag(parse_object(new_oid), NULL, 0); if (!o || o->type != OBJ_COMMIT) return 0; new = (struct commit *) o;