From: Rocco Rutte Date: Sun, 7 Jul 2002 19:22:19 +0000 (+0000) Subject: Make encode_from a bit more aggressive, by also catching a 'f' in X-Git-Tag: mutt-1-5-2-rel~78 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=be324654bfd8db2c1ef5d4bb52867d6f297e04de;p=mutt Make encode_from a bit more aggressive, by also catching a 'f' in the beginning of a line. --- diff --git a/sendlib.c b/sendlib.c index 2a16002d..58b67636 100644 --- a/sendlib.c +++ b/sendlib.c @@ -626,7 +626,7 @@ static void update_content_info (CONTENT *info, CONTENT_STATE *s, char *d, size_ { if (linelen == 1) { - if (ch == 'F') + if ((ch == 'F') || (ch == 'f')) from = 1; else from = 0;