diff options
| author | Rémi Lagacé <rlagace@cld.ca> | 2010-07-13 19:15:09 +0200 | 
|---|---|---|
| committer | Lars Hjemli <hjemli@gmail.com> | 2010-07-13 19:24:55 +0200 | 
| commit | 73ac0fb6f217addbcd7878828407392418c973de (patch) | |
| tree | 022166308396b5ef351f98a44390248f08cfd268 | |
| parent | f072bc55b08675db93b2f892016e83d9f975dea2 (diff) | |
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>
| -rw-r--r-- | parsing.c | 4 | 
1 files changed, 4 insertions, 0 deletions
| @@ -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);  	} | 
