* uip/mhshowsbr.c (show_all_messages): Be more generous when parsing
authorJosh Bressers <josh@bress.net>
Fri, 25 Jan 2008 21:00:42 +0000 (21:00 +0000)
committerJosh Bressers <josh@bress.net>
Fri, 25 Jan 2008 21:00:42 +0000 (21:00 +0000)
    multipart messages.

ChangeLog
uip/mhshowsbr.c

index 2b2254c..ffa4e93 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-01-25  Josh Bressers <josh@bress.net>
+
+       * uip/mhshowsbr.c (show_all_messages): Be more generous when parsing
+       multipart messages.
+
 2007-11-04  Joel Reicher <joel@panacea.null.org>
 
        * Changed done() link overriding to function pointer. Return type
index 08d676e..e28c73e 100644 (file)
@@ -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);
     }
 }