]> git.marmaro.de Git - mmh/commitdiff
* 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 2b2254c8d3d4a357276c943de12f704402e8f591..ffa4e93dc3fcbb8ed215352a15b8a55f35ef7446 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 08d676e035626d7f2046c2cb2ac62f681ebc1e55..e28c73ea655cb6dba325696176d2acbaa8a113f8 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);
     }
 }