From be324654bfd8db2c1ef5d4bb52867d6f297e04de Mon Sep 17 00:00:00 2001 From: Rocco Rutte Date: Sun, 7 Jul 2002 19:22:19 +0000 Subject: [PATCH] Make encode_from a bit more aggressive, by also catching a 'f' in the beginning of a line. --- sendlib.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.40.0