push: test to verify that push errors are colored
[gitweb.git] / builtin / mktag.c
index 65bb41e3cdd534c3dd48f772511f7ebd8c225813..9f5a50a8fd5b0b3acf664df8d20ae5bdee288fe8 100644 (file)
@@ -23,12 +23,12 @@ static int verify_object(const struct object_id *oid, const char *expected_type)
        int ret = -1;
        enum object_type type;
        unsigned long size;
-       void *buffer = read_sha1_file(oid->hash, &type, &size);
-       const unsigned char *repl = lookup_replace_object(oid->hash);
+       void *buffer = read_object_file(oid, &type, &size);
+       const struct object_id *repl = lookup_replace_object(oid);
 
        if (buffer) {
                if (type == type_from_string(expected_type))
-                       ret = check_sha1_signature(repl, buffer, size, expected_type);
+                       ret = check_object_signature(repl, buffer, size, expected_type);
                free(buffer);
        }
        return ret;