odb: get rid of the_repository in assert_oid_type()
Get rid of our dependency on `the_repository` in `assert_oid_type()` by passing in the object database as a parameter and adjusting all callers. Rename the function to `odb_assert_oid_type()`. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
committed by
Junio C Hamano
parent
bd52ea343d
commit
961038856b
@@ -48,7 +48,7 @@ static int parse_parent_arg_callback(const struct option *opt,
|
||||
if (repo_get_oid_commit(the_repository, arg, &oid))
|
||||
die(_("not a valid object name %s"), arg);
|
||||
|
||||
assert_oid_type(&oid, OBJ_COMMIT);
|
||||
odb_assert_oid_type(the_repository->objects, &oid, OBJ_COMMIT);
|
||||
new_parent(lookup_commit(the_repository, &oid), parents);
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user