diff options
author | Ben Straub <bs@github.com> | 2012-12-03 12:41:50 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-12-03 12:41:50 -0800 |
commit | de70aea6b1c09b67f233ef0bee83864ce90260b2 (patch) | |
tree | d9b50aa103dbd36c576edae52ec901ca2c7bda40 /src/commit.c | |
parent | 2da619abdebe78ce90be5e7d58e2257ec1777003 (diff) | |
download | libgit2-de70aea6b1c09b67f233ef0bee83864ce90260b2.tar.gz |
Remove GIT_SIGNATURE_VERSION and friends
Diffstat (limited to 'src/commit.c')
-rw-r--r-- | src/commit.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/commit.c b/src/commit.c index f9606dd72..4072518ff 100644 --- a/src/commit.c +++ b/src/commit.c @@ -93,8 +93,6 @@ int git_commit_create( git_odb *odb; assert(git_object_owner((const git_object *)tree) == repo); - GITERR_CHECK_VERSION(author, GIT_SIGNATURE_VERSION, "git_signature"); - GITERR_CHECK_VERSION(committer, GIT_SIGNATURE_VERSION, "git_signature"); git_oid__writebuf(&commit, "tree ", git_object_id((const git_object *)tree)); |