File pan-0.134-handle-nzb-multipart.patch of Package pan.import4642
--- pan/gui/gui.cc 2011/05/30 06:52:13 1.1
+++ pan/gui/gui.cc 2011/05/30 06:54:54
@@ -567,12 +567,8 @@
void foreach_part (GMimeObject *o)
{
- if (GMIME_IS_MULTIPART (o))
- {
- g_mime_multipart_foreach (GMIME_MULTIPART (o), foreach_part_cb, this);
- }
- else if (GMIME_IS_PART(o))
- {
+ if (GMIME_IS_PART(o))
+ {
GMimePart * part (GMIME_PART (o));
GMimeDataWrapper * wrapper (g_mime_part_get_content_object (part));
GMimeStream * mem_stream (g_mime_stream_mem_new ());