From: Josh Bressers <josh@bress.net>
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/?a=commitdiff_plain;h=55b8f7b6a738adb4dc9833233fc6111f3cd56969;p=mmh

* uip/mhshowsbr.c (show_all_messages): Be more generous when parsing
    multipart messages.
---

diff --git a/ChangeLog b/ChangeLog
index 2b2254c8..ffa4e93d 100644
--- 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
diff --git a/uip/mhshowsbr.c b/uip/mhshowsbr.c
index 08d676e0..e28c73ea 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);
     }
 }