rebase: fix documentation formatting
[gitweb.git] / builtin / verify-commit.c
index ba38ac9b1518884693e2c89ec19cc9e00fce9fa3..dcdaada111071c84b56022d9050ae06ffafbc25f 100644 (file)
@@ -44,12 +44,12 @@ static int verify_commit(const char *name, unsigned flags)
        if (get_oid(name, &oid))
                return error("commit '%s' not found.", name);
 
-       buf = read_sha1_file(oid.hash, &type, &size);
+       buf = read_object_file(&oid, &type, &size);
        if (!buf)
                return error("%s: unable to read file.", name);
        if (type != OBJ_COMMIT)
                return error("%s: cannot verify a non-commit object of type %s.",
-                               name, typename(type));
+                               name, type_name(type));
 
        ret = run_gpg_verify(&oid, buf, size, flags);