X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-mx%2Fhcache.c;h=e59e43ac3a3381bf18581f0fb342c2a39b600819;hp=8748adf198c0f859064fb3c382f18b8ea905701f;hb=97e1d274dfbeb8b4a5da3f2b68fb66f96b7739d3;hpb=366c938a78d928880c77bfe31a8715184c918d41 diff --git a/lib-mx/hcache.c b/lib-mx/hcache.c index 8748adf..e59e43a 100644 --- a/lib-mx/hcache.c +++ b/lib-mx/hcache.c @@ -56,7 +56,7 @@ static int generate_crc32(void) crc = crc32(crc, "madmutt.2007.05.13", m_strlen("madmutt.2007.05.13")); #ifdef HAVE_LANGINFO_H - crc = crc32(crc, MCharset.charset, m_strlen(MCharset.charset)); + crc = crc32(crc, mod_cset.charset, m_strlen(mod_cset.charset)); #endif crc = crc32(crc, "USE_POP", m_strlen("USE_POP")); crc = crc32(crc, "MIXMASTER", m_strlen("MIXMASTER")); @@ -281,7 +281,6 @@ static void dump_envelope(buffer_t *buf, ENVELOPE * e) dump_cstr(buf, e->newsgroups); dump_cstr(buf, e->xref); dump_cstr(buf, e->followup_to); - dump_cstr(buf, e->x_comment_to); #endif dump_list(buf, e->references); @@ -319,7 +318,6 @@ static const void *restore_envelope(const char *d, ENVELOPE *e) d = restore_cstr(d, &e->newsgroups); d = restore_cstr(d, &e->xref); d = restore_cstr(d, &e->followup_to); - d = restore_cstr(d, &e->x_comment_to); #endif d = restore_list(d, &e->references);