mirror of
https://git.zx2c4.com/cgit
synced 2025-06-29 13:00:08 +02:00
Set msg_encoding according to the header.
This commit is contained in:
parent
3845e177e4
commit
aa5cc328f4
1 changed files with 8 additions and 0 deletions
|
@ -234,6 +234,14 @@ struct commitinfo *cgit_parse_commit(struct commit *commit)
|
||||||
p = strchr(t, '\n') + 1;
|
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'))
|
while (*p && (*p != '\n'))
|
||||||
p = strchr(p, '\n') + 1; // skip unknown header fields
|
p = strchr(p, '\n') + 1; // skip unknown header fields
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue