From: mmj Date: Sat, 29 May 2004 10:44:21 +0000 (+1000) Subject: Make this change to mailhdr, since we can have e.g. several To: X-Git-Tag: RELEASE_1_0_0~210 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d24d79ff7c8d8305a4f910642b69af6c2f04bfaf;p=thirdparty%2Fmlmmj.git Make this change to mailhdr, since we can have e.g. several To: headers. struct mailhdr { const char *token; - char *value; + int valuecount; + char **values; }; --- diff --git a/include/mlmmj.h b/include/mlmmj.h index fbf8423d..bd787e9e 100644 --- a/include/mlmmj.h +++ b/include/mlmmj.h @@ -27,7 +27,8 @@ struct mailhdr { const char *token; - char *value; + int valuecount; + char **values; }; void print_version(const char *prg);