diff options
author | Vicent Marti <tanoku@gmail.com> | 2010-12-18 02:10:25 +0200 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2010-12-18 02:35:33 +0200 |
commit | 638c2ca4281589b73f2d402bb80775242045144a (patch) | |
tree | 8ad909bbf2612ddebe2078ed623f3fb4c9421cf1 /src/git2/commit.h | |
parent | 5cccfa899926a93c12af8232c0c0d16c0c9c7ff2 (diff) | |
download | libgit2-638c2ca4281589b73f2d402bb80775242045144a.tar.gz |
Rename 'git_person' to 'git_signature'
The new signature struct is public, and contains information about the
timezone offset. Must be free'd manually by the user.
Signed-off-by: Vicent Marti <tanoku@gmail.com>
Diffstat (limited to 'src/git2/commit.h')
-rw-r--r-- | src/git2/commit.h | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/src/git2/commit.h b/src/git2/commit.h index 54b0ed872..ccffec45f 100644 --- a/src/git2/commit.h +++ b/src/git2/commit.h @@ -104,14 +104,14 @@ GIT_EXTERN(int) git_commit_timezone_offset(git_commit *commit); * @param commit a previously loaded commit. * @return the committer of a commit */ -GIT_EXTERN(const git_person *) git_commit_committer(git_commit *commit); +GIT_EXTERN(const git_signature *) git_commit_committer(git_commit *commit); /** * Get the author of a commit. * @param commit a previously loaded commit. * @return the author of a commit */ -GIT_EXTERN(const git_person *) git_commit_author(git_commit *commit); +GIT_EXTERN(const git_signature *) git_commit_author(git_commit *commit); /** * Get the tree pointed to by a commit. @@ -154,22 +154,16 @@ GIT_EXTERN(void) git_commit_set_message(git_commit *commit, const char *message) /** * Set the committer of a commit * @param commit the commit object - * @param name name of the new committer - * @param email email of the new committer - * @param time time when the committer committed the commit - * @param offset committer positive or negative timezone offset, in minutes from UTC + * @param author_sig signature of the committer */ -GIT_EXTERN(void) git_commit_set_committer(git_commit *commit, const char *name, const char *email, time_t time, int offset); +GIT_EXTERN(void) git_commit_set_committer(git_commit *commit, const git_signature *committer_sig); /** * Set the author of a commit * @param commit the commit object - * @param name name of the new author - * @param email email of the new author - * @param time time when the author created the commit - * @param offset author positive or negative timezone offset, in minutes from UTC + * @param author_sig signature of the author */ -GIT_EXTERN(void) git_commit_set_author(git_commit *commit, const char *name, const char *email, time_t time, int offset); +GIT_EXTERN(void) git_commit_set_author(git_commit *commit, const git_signature *author_sig); /** * Set the tree which is pointed to by a commit |