aboutsummaryrefslogtreecommitdiffstats
path: root/parsing.c
diff options
context:
space:
mode:
authorJonathan Bastien-Filiatrault <joe@x2a.org>2007-10-26 18:10:26 -0400
committerJonathan Bastien-Filiatrault <joe@x2a.org>2007-11-05 18:13:30 -0500
commitaa5cc328f4894ba6972842b4edbca3017f169050 (patch)
treec8eb7be0f9186d3599a7d36907f473a550fd7529 /parsing.c
parentAdd commit->msg_encoding, allocate msg dynamicly. (diff)
downloadcgit-aa5cc328f4894ba6972842b4edbca3017f169050.tar.xz
cgit-aa5cc328f4894ba6972842b4edbca3017f169050.zip
Set msg_encoding according to the header.
Diffstat (limited to 'parsing.c')
-rw-r--r--parsing.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/parsing.c b/parsing.c
index 0412a9c..16b4db7 100644
--- a/parsing.c
+++ b/parsing.c
@@ -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