about summary refs log tree commit diff stats
path: root/parsing.c
diff options
context:
space:
mode:
authorRémi Lagacé2010-07-13 19:15:09 +0200
committerLars Hjemli2010-07-13 19:24:55 +0200
commit73ac0fb6f217addbcd7878828407392418c973de (patch)
tree022166308396b5ef351f98a44390248f08cfd268 /parsing.c
parentCGIT 0.8.3.2 (diff)
downloadcgit-73ac0fb6f217addbcd7878828407392418c973de.tar.gz
cgit-73ac0fb6f217addbcd7878828407392418c973de.zip
Reencode author and committer
When a commit has a specific encoding, this encoding also applies to
the author and committer name and email.

Signed-off-by: Lars Hjemli <hjemli@gmail.com>
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c index f3f3b15..f37c49d 100644 --- a/parsing.c +++ b/parsing.c
@@ -190,6 +190,10 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
190 ret->subject = xstrdup(p); 190 ret->subject = xstrdup(p);
191 191
192 if (ret->msg_encoding) { 192 if (ret->msg_encoding) {
193 reencode(&ret->author, PAGE_ENCODING, ret->msg_encoding);
194 reencode(&ret->author_email, PAGE_ENCODING, ret->msg_encoding);
195 reencode(&ret->committer, PAGE_ENCODING, ret->msg_encoding);
196 reencode(&ret->committer_email, PAGE_ENCODING, ret->msg_encoding);
193 reencode(&ret->subject, PAGE_ENCODING, ret->msg_encoding); 197 reencode(&ret->subject, PAGE_ENCODING, ret->msg_encoding);
194 reencode(&ret->msg, PAGE_ENCODING, ret->msg_encoding); 198 reencode(&ret->msg, PAGE_ENCODING, ret->msg_encoding);
195 } 199 }