X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=hcache.c;h=0febef6c0ae4c96aa92ac03fe634a00cba4d6005;hp=7a7c2eeffbbc16de947c34b9bf9ec7950cf8ea6a;hb=75254682ac295c8bd39ec01d8e96c5d9b0938682;hpb=c8ceef3ed6424dcb5a6ec835e7d8d9cc00595372 diff --git a/hcache.c b/hcache.c index 7a7c2ee..0febef6 100644 --- a/hcache.c +++ b/hcache.c @@ -14,7 +14,7 @@ #ifdef USE_HCACHE -#define MUTTNG_HCACHE_ID "0x003" +#define MUTTNG_HCACHE_ID "0x004" # if HAVE_INTTYPES_H # include @@ -376,6 +376,7 @@ static unsigned char *dump_envelope (ENVELOPE * e, unsigned char *d, int *off) d = dump_char (e->supersedes, d, off); d = dump_char (e->date, d, off); d = dump_char (e->x_label, d, off); + d = dump_char (e->list_post, d, off); #ifdef USE_NNTP d = dump_char (e->newsgroups, d, off); @@ -416,7 +417,8 @@ static void restore_envelope (ENVELOPE * e, const unsigned char *d, int *off) restore_char (&e->supersedes, d, off); restore_char (&e->date, d, off); restore_char (&e->x_label, d, off); - + restore_char (&e->list_post, d, off); + #ifdef USE_NNTP restore_char (&e->newsgroups, d, off); restore_char (&e->xref, d, off);