View | Details | Raw Unified | Return to bug 128075
Collapse All | Expand All

(-)handler.c (-2 / +11 lines)
Lines 1199-1209 Link Here
1199
    
1199
    
1200
    if (rc)
1200
    if (rc)
1201
    {
1201
    {
1202
      mutt_error ("One or more parts of this message could not be displayed");
1202
      dprint (1, (debugfile, "Failed on attachment #%d, type %s/%s.\n", count, TYPE(p), NONULL (p->subtype)));
1203
      dprint (1, (debugfile, "Failed on attachment #%d, type %s/%s.\n", count, TYPE(p), NONULL (p->subtype)));
1203
    }
1204
    }
1204
    
1205
    
1205
    if (rc || ((s->flags & M_REPLYING)
1206
    if ((s->flags & M_REPLYING)
1206
               && (option (OPTINCLUDEONLYFIRST)) && (s->flags & M_FIRSTDONE)))
1207
        && (option (OPTINCLUDEONLYFIRST)) && (s->flags & M_FIRSTDONE))
1207
      break;
1208
      break;
1208
  }
1209
  }
1209
1210
Lines 1564-1569 Link Here
1564
1565
1565
    if (!handler)
1566
    if (!handler)
1566
      handler = multipart_handler;
1567
      handler = multipart_handler;
1568
    
1569
    if (b->encoding != ENC7BIT && b->encoding != ENC8BIT
1570
        && b->encoding != ENCBINARY)
1571
    {
1572
      dprint (1, (debugfile, "Bad encoding type %d for multipart entity, "
1573
                  "assuming 7 bit\n", b->encoding));
1574
      b->encoding = ENC7BIT;
1575
    }
1567
  }
1576
  }
1568
  else if (WithCrypto && b->type == TYPEAPPLICATION)
1577
  else if (WithCrypto && b->type == TYPEAPPLICATION)
1569
  {
1578
  {

Return to bug 128075