about summary refs log tree commit diff stats
path: root/cgit.h
diff options
context:
space:
mode:
Diffstat (limited to 'cgit.h')
-rw-r--r--cgit.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/cgit.h b/cgit.h index de5c94a..501cb48 100644 --- a/cgit.h +++ b/cgit.h
@@ -130,9 +130,11 @@ struct commitinfo {
130 char *author; 130 char *author;
131 char *author_email; 131 char *author_email;
132 unsigned long author_date; 132 unsigned long author_date;
133 int author_tz;
133 char *committer; 134 char *committer;
134 char *committer_email; 135 char *committer_email;
135 unsigned long committer_date; 136 unsigned long committer_date;
137 int committer_tz;
136 char *subject; 138 char *subject;
137 char *msg; 139 char *msg;
138 char *msg_encoding; 140 char *msg_encoding;
@@ -142,6 +144,7 @@ struct taginfo {
142 char *tagger; 144 char *tagger;
143 char *tagger_email; 145 char *tagger_email;
144 unsigned long tagger_date; 146 unsigned long tagger_date;
147 int tagger_tz;
145 char *msg; 148 char *msg;
146}; 149};
147 150