From: Thomas Roessler Date: Mon, 7 Sep 1998 08:10:59 +0000 (+0000) Subject: Fixing convert_to_7bit(). From Liviu Daia. X-Git-Tag: mutt-0-94-6i-rel~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b52fa2e3aeb517440389232734dce3d234e97435;p=mutt Fixing convert_to_7bit(). From Liviu Daia. --- diff --git a/pgp.c b/pgp.c index c77a0859..8e1cab6e 100644 --- a/pgp.c +++ b/pgp.c @@ -955,8 +955,11 @@ static void convert_to_7bit (BODY *a) if (a->type == TYPEMULTIPART) { if (a->encoding != ENC7BIT) + { a->encoding = ENC7BIT; - if (option (OPTPGPSTRICTENC)) + convert_to_7bit(a->parts); + } + else if (option (OPTPGPSTRICTENC)) convert_to_7bit (a->parts); } else if (a->type == TYPEMESSAGE