diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-19 13:54:50 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-11-19 13:54:50 +0100 |
commit | 578b8171511f67a9c2afc5c6ae9745de9f9b5e42 (patch) | |
tree | ba9509048907f2dfbe6095e208f2f9d85d835d6e | |
parent | 41fea01066539ed8e958c21591a5fe7155565ceb (diff) | |
download | busybox-w32-578b8171511f67a9c2afc5c6ae9745de9f9b5e42.tar.gz busybox-w32-578b8171511f67a9c2afc5c6ae9745de9f9b5e42.tar.bz2 busybox-w32-578b8171511f67a9c2afc5c6ae9745de9f9b5e42.zip |
sendmail: fix a mistake in previous commit
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | mailutils/sendmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailutils/sendmail.c b/mailutils/sendmail.c index f96ca3291..aa381c60f 100644 --- a/mailutils/sendmail.c +++ b/mailutils/sendmail.c | |||
@@ -293,7 +293,7 @@ int sendmail_main(int argc UNUSED_PARAM, char **argv) | |||
293 | continue; // N.B. Bcc: vanishes from headers! | 293 | continue; // N.B. Bcc: vanishes from headers! |
294 | } | 294 | } |
295 | } | 295 | } |
296 | if (strchr(s, ':') || (list && isspace(s))) { | 296 | if (strchr(s, ':') || (list && isspace(s[0]))) { |
297 | // other headers go verbatim | 297 | // other headers go verbatim |
298 | // N.B. RFC2822 2.2.3 "Long Header Fields" allows for headers to occupy several lines. | 298 | // N.B. RFC2822 2.2.3 "Long Header Fields" allows for headers to occupy several lines. |
299 | // Continuation is denoted by prefixing additional lines with whitespace(s). | 299 | // Continuation is denoted by prefixing additional lines with whitespace(s). |