diff options
author | Vicent Martà <tanoku@gmail.com> | 2011-06-06 18:28:11 -0700 |
---|---|---|
committer | Vicent Martà <tanoku@gmail.com> | 2011-06-06 18:28:11 -0700 |
commit | 1b0d92b141a784663a34cf8dec4242c471586429 (patch) | |
tree | f6110df12045f693ebe67deca8f03f2c7097da17 /include/git2 | |
parent | fe79750baa01e74e03b6ad079ab2d6294b0e01d7 (diff) | |
parent | c09093cce2902bca40f3c0746bc754780f351a45 (diff) | |
download | libgit2-1b0d92b141a784663a34cf8dec4242c471586429.tar.gz |
Merge pull request #238 from pegonma/git_oid_ncmp
Better name for git_oid_match
Diffstat (limited to 'include/git2')
-rw-r--r-- | include/git2/oid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/git2/oid.h b/include/git2/oid.h index f1f7dcc6c..d87d8f6ba 100644 --- a/include/git2/oid.h +++ b/include/git2/oid.h @@ -144,7 +144,7 @@ GIT_EXTERN(int) git_oid_cmp(const git_oid *a, const git_oid *b); * @param b second oid structure. * @return 0 in case of a match */ -GIT_EXTERN(int) gid_oid_match(unsigned int len, git_oid *a, git_oid *b); +GIT_EXTERN(int) gid_oid_ncmp(unsigned int len, git_oid *a, git_oid *b); /** * OID Shortener object |