]> git.ipfire.org Git - thirdparty/git.git/blobdiff - builtin/fetch.c
Convert check_connected to use struct object_id
[thirdparty/git.git] / builtin / fetch.c
index 859be91d6cd707b3b3123b2485c6a09f985c0ea9..e705237fa900dd7e4e73a58e7b6dad425bc7e431 100644 (file)
@@ -727,7 +727,7 @@ static int update_local_ref(struct ref *ref,
        }
 }
 
-static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
+static int iterate_ref_map(void *cb_data, struct object_id *oid)
 {
        struct ref **rm = cb_data;
        struct ref *ref = *rm;
@@ -737,7 +737,7 @@ static int iterate_ref_map(void *cb_data, unsigned char sha1[20])
        if (!ref)
                return -1; /* end of the list */
        *rm = ref->next;
-       hashcpy(sha1, ref->old_oid.hash);
+       oidcpy(oid, &ref->old_oid);
        return 0;
 }