]> git.cameronkatri.com Git - cgit.git/commitdiff
Reencode author and committer
authorRémi Lagacé <rlagace@cld.ca>
Tue, 13 Jul 2010 17:15:09 +0000 (19:15 +0200)
committerLars Hjemli <hjemli@gmail.com>
Tue, 13 Jul 2010 17:24:55 +0000 (19:24 +0200)
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>
parsing.c

index f3f3b15f736521f267e87dd474fee0af5c961250..f37c49d261765636cfef652faec3be8baf6d2894 100644 (file)
--- a/parsing.c
+++ b/parsing.c
@@ -190,6 +190,10 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
                ret->subject = xstrdup(p);
 
        if (ret->msg_encoding) {
+               reencode(&ret->author, PAGE_ENCODING, ret->msg_encoding);
+               reencode(&ret->author_email, PAGE_ENCODING, ret->msg_encoding);
+               reencode(&ret->committer, PAGE_ENCODING, ret->msg_encoding);
+               reencode(&ret->committer_email, PAGE_ENCODING, ret->msg_encoding);
                reencode(&ret->subject, PAGE_ENCODING, ret->msg_encoding);
                reencode(&ret->msg, PAGE_ENCODING, ret->msg_encoding);
        }