commit | aa5cc328f4894ba6972842b4edbca3017f169050 | [log] [tgz] |
---|---|---|
author | Jonathan Bastien-Filiatrault <joe@x2a.org> | Fri Oct 26 18:10:26 2007 -0400 |
committer | Jonathan Bastien-Filiatrault <joe@x2a.org> | Mon Nov 05 18:13:30 2007 -0500 |
tree | c8eb7be0f9186d3599a7d36907f473a550fd7529 | |
parent | 3845e177e4e0b231efb6fda0ac3cd3a2d8f34d4b [diff] [blame] |
Set msg_encoding according to the header.
diff --git a/parsing.c b/parsing.c index 0412a9c..16b4db7 100644 --- a/parsing.c +++ b/parsing.c
@@ -234,6 +234,14 @@ 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