summaryrefslogtreecommitdiffstats
path: root/sendlib.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-11-19 17:14:02 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-11-19 17:14:02 +0000
commit7037a4e08fb045f87e7aa96cf298a4386385824d (patch)
tree2011ac3702a9ef2c27c114bb064ae3f8dbba91a1 /sendlib.c
parent2a1feed319ea33cbd2705469245ba3208b5f7a9e (diff)
Use mutt_is_message_type() in the message transformation code.
Diffstat (limited to 'sendlib.c')
-rw-r--r--sendlib.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sendlib.c b/sendlib.c
index 8bece5a3..4602728a 100644
--- a/sendlib.c
+++ b/sendlib.c
@@ -850,7 +850,7 @@ static void transform_to_7bit (BODY *a, FILE *fpin)
transform_to_7bit (a->parts, fpin);
}
- else if (a->type == TYPEMESSAGE && mutt_strcasecmp (a->subtype, "delivery-status"))
+ else if (mutt_is_message_type(a->type, a->subtype))
{
mutt_message_to_7bit (a, fpin);
}