]> git.ipfire.org Git - thirdparty/git.git/blobdiff - bisect.c
send-email: allow use of aliases in the From field of --compose mode
[thirdparty/git.git] / bisect.c
index 10f5e57ef37873682f2b987e67708fea61cd05f8..03d5cd9454207d0eb6fc87768e3dc432a5b921f5 100644 (file)
--- a/bisect.c
+++ b/bisect.c
@@ -400,16 +400,16 @@ struct commit_list *find_bisection(struct commit_list *list,
        return best;
 }
 
-static int register_ref(const char *refname, const unsigned char *sha1,
+static int register_ref(const char *refname, const struct object_id *oid,
                        int flags, void *cb_data)
 {
        if (!strcmp(refname, "bad")) {
                current_bad_oid = xmalloc(sizeof(*current_bad_oid));
-               hashcpy(current_bad_oid->hash, sha1);
+               oidcpy(current_bad_oid, oid);
        } else if (starts_with(refname, "good-")) {
-               sha1_array_append(&good_revs, sha1);
+               sha1_array_append(&good_revs, oid->hash);
        } else if (starts_with(refname, "skip-")) {
-               sha1_array_append(&skipped_revs, sha1);
+               sha1_array_append(&skipped_revs, oid->hash);
        }
 
        return 0;