From: Josh Bressers Date: Fri, 25 Jan 2008 21:00:42 +0000 (+0000) Subject: * uip/mhshowsbr.c (show_all_messages): Be more generous when parsing X-Git-Tag: nmh-1_3_RC1~5 X-Git-Url: http://git.marmaro.de/?p=mmh;a=commitdiff_plain;h=55b8f7b6a738adb4dc9833233fc6111f3cd56969;hp=da831514de01e2407cef37c118ffff0526a486d0 * uip/mhshowsbr.c (show_all_messages): Be more generous when parsing multipart messages. --- diff --git a/ChangeLog b/ChangeLog index 2b2254c..ffa4e93 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-01-25 Josh Bressers + + * uip/mhshowsbr.c (show_all_messages): Be more generous when parsing + multipart messages. + 2007-11-04 Joel Reicher * Changed done() link overriding to function pointer. Return type diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c index 08d676e..e28c73e 100644 --- a/uip/mhshowsbr.c +++ b/uip/mhshowsbr.c @@ -119,7 +119,7 @@ show_all_messages (CT *cts) ct = *ctp; /* if top-level type is ok, then display message */ - if (type_ok (ct, 0)) + if (type_ok (ct, 1)) show_single_message (ct, formsw); } }