diff options
| author | nulltoken <emeric.fermas@gmail.com> | 2013-03-31 13:27:43 +0200 |
|---|---|---|
| committer | nulltoken <emeric.fermas@gmail.com> | 2013-03-31 14:36:51 +0200 |
| commit | 24cb87e2a68f550be9b9df8569796f8d491fed55 (patch) | |
| tree | 7b350e5bb0da77c377c945b1c804243c24d0610b /include | |
| parent | 5a5bd640241f68387fe3403e29f3d31103b8c0fd (diff) | |
| download | libgit2-24cb87e2a68f550be9b9df8569796f8d491fed55.tar.gz | |
tag: Fix parsing when no tagger nor message
Diffstat (limited to 'include')
| -rw-r--r-- | include/git2/tag.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/git2/tag.h b/include/git2/tag.h index 1ffeb0b4a..84c954c27 100644 --- a/include/git2/tag.h +++ b/include/git2/tag.h @@ -121,7 +121,7 @@ GIT_EXTERN(const char *) git_tag_name(const git_tag *tag); * Get the tagger (author) of a tag * * @param tag a previously loaded tag. - * @return reference to the tag's author + * @return reference to the tag's author or NULL when unspecified */ GIT_EXTERN(const git_signature *) git_tag_tagger(const git_tag *tag); @@ -129,7 +129,7 @@ GIT_EXTERN(const git_signature *) git_tag_tagger(const git_tag *tag); * Get the message of a tag * * @param tag a previously loaded tag. - * @return message of the tag + * @return message of the tag or NULL when unspecified */ GIT_EXTERN(const char *) git_tag_message(const git_tag *tag); |
