summaryrefslogtreecommitdiff
path: root/src/commit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/commit.c')
-rw-r--r--src/commit.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/commit.c b/src/commit.c
index a26368ce0..3338b175d 100644
--- a/src/commit.c
+++ b/src/commit.c
@@ -88,12 +88,12 @@ static int validate_tree_and_parents(git_array_oid_t *parents, git_repository *r
git_oid *parent_cpy;
const git_oid *parent;
- if (validate && !git_object__is_valid(repo, tree, GIT_OBJ_TREE))
+ if (validate && !git_object__is_valid(repo, tree, GIT_OBJECT_TREE))
return -1;
i = 0;
while ((parent = parent_cb(i, parent_payload)) != NULL) {
- if (validate && !git_object__is_valid(repo, parent, GIT_OBJ_COMMIT)) {
+ if (validate && !git_object__is_valid(repo, parent, GIT_OBJECT_COMMIT)) {
error = -1;
goto on_error;
}
@@ -164,7 +164,7 @@ static int git_commit__create_internal(
if (git_odb__freshen(odb, tree) < 0)
goto cleanup;
- if (git_odb_write(id, odb, buf.ptr, buf.size, GIT_OBJ_COMMIT) < 0)
+ if (git_odb_write(id, odb, buf.ptr, buf.size, GIT_OBJECT_COMMIT) < 0)
goto cleanup;
@@ -730,7 +730,7 @@ int git_commit_extract_signature(git_buf *signature, git_buf *signed_data, git_r
if ((error = git_odb_read(&obj, odb, commit_id)) < 0)
return error;
- if (obj->cached.type != GIT_OBJ_COMMIT) {
+ if (obj->cached.type != GIT_OBJECT_COMMIT) {
giterr_set(GITERR_INVALID, "the requested type does not match the type in ODB");
error = GIT_ENOTFOUND;
goto cleanup;
@@ -890,7 +890,7 @@ int git_commit_create_with_signature(
if ((error = git_repository_odb__weakptr(&odb, repo)) < 0)
goto cleanup;
- if ((error = git_odb_write(out, odb, commit.ptr, commit.size, GIT_OBJ_COMMIT)) < 0)
+ if ((error = git_odb_write(out, odb, commit.ptr, commit.size, GIT_OBJECT_COMMIT)) < 0)
goto cleanup;
cleanup: