Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/tag.h
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2010-12-18 03:10:25 +0300
committerVicent Marti <tanoku@gmail.com>2010-12-18 03:35:33 +0300
commit638c2ca4281589b73f2d402bb80775242045144a (patch)
tree8ad909bbf2612ddebe2078ed623f3fb4c9421cf1 /src/tag.h
parent5cccfa899926a93c12af8232c0c0d16c0c9c7ff2 (diff)
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/tag.h')
-rw-r--r--src/tag.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tag.h b/src/tag.h
index dd84ff69b..624fcc654 100644
--- a/src/tag.h
+++ b/src/tag.h
@@ -10,7 +10,7 @@ struct git_tag {
git_object *target;
git_otype type;
char *tag_name;
- git_person *tagger;
+ git_signature *tagger;
char *message;
};