]> granicus.if.org Git - mutt/commitdiff
Make encode_from a bit more aggressive, by also catching a 'f' in
authorRocco Rutte <s1118644@mail.inf.tu-dresden.de>
Sun, 7 Jul 2002 19:22:19 +0000 (19:22 +0000)
committerRocco Rutte <s1118644@mail.inf.tu-dresden.de>
Sun, 7 Jul 2002 19:22:19 +0000 (19:22 +0000)
the beginning of a line.

sendlib.c

index 2a16002de383ded8d7c276fd813fdb514f68ccf9..58b676369de0af38c0b38188ffbf0c59686d3ec2 100644 (file)
--- 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;