about summary refs log tree commit diff
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
parentAdd commit->msg_encoding, allocate msg dynamicly. (diff)
downloadcgit-magenta-aa5cc328f4894ba6972842b4edbca3017f169050.tar.xz
Set msg_encoding according to the header.
-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