diff options
author | Denys Vlasenko | 2011-11-18 22:25:35 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-11-18 22:25:35 +0100 |
commit | 41fea01066539ed8e958c21591a5fe7155565ceb (patch) | |
tree | a4531fe81eaa3b1231ef810589477fcb323ba25e /mailutils/mail.c | |
parent | a0bef7cc276476e69e2496e728bf97b32d3b561d (diff) | |
download | busybox-41fea01066539ed8e958c21591a5fe7155565ceb.zip busybox-41fea01066539ed8e958c21591a5fe7155565ceb.tar.gz |
sendmail: stop doing -t unconditionally; makemime: generate 76 char base64 lines
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils/mail.c')
-rw-r--r-- | mailutils/mail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mailutils/mail.c b/mailutils/mail.c index f5260d9..199f644 100644 --- a/mailutils/mail.c +++ b/mailutils/mail.c @@ -119,7 +119,7 @@ static char* FAST_FUNC parse_url(char *url, char **user, char **pass) void FAST_FUNC encode_base64(char *fname, const char *text, const char *eol) { enum { - SRC_BUF_SIZE = 45, /* This *MUST* be a multiple of 3 */ + SRC_BUF_SIZE = 57, /* This *MUST* be a multiple of 3 */ DST_BUF_SIZE = 4 * ((SRC_BUF_SIZE + 2) / 3), }; #define src_buf text |