Set msg_encoding according to the header.

这个提交包含在:
Jonathan Bastien-Filiatrault 2007-10-26 18:10:26 -04:00
父节点 3845e177e4
当前提交 aa5cc328f4
共有 1 个文件被更改,包括 8 次插入0 次删除

查看文件

@ -234,6 +234,14 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
p = strchr(t, '\n') + 1;
}
if (!strncmp(p, "encoding ", 9)) {
p += 9;
t = strchr(p, '\n') + 1;
ret->msg_encoding = substr(p, t);
p = t;
} else
ret->msg_encoding = xstrdup(PAGE_ENCODING);
while (*p && (*p != '\n'))
p = strchr(p, '\n') + 1; // skip unknown header fields