diff options
Diffstat (limited to 'mailutils')
-rw-r--r-- | mailutils/mail.c | 2 | ||||
-rw-r--r-- | mailutils/sendmail.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/mailutils/mail.c b/mailutils/mail.c index 199f64407..a7e43c0d1 100644 --- a/mailutils/mail.c +++ b/mailutils/mail.c | |||
@@ -154,7 +154,7 @@ void FAST_FUNC encode_base64(char *fname, const char *text, const char *eol) | |||
154 | // encode the buffer we just read in | 154 | // encode the buffer we just read in |
155 | bb_uuencode(dst_buf, src_buf, size, bb_uuenc_tbl_base64); | 155 | bb_uuencode(dst_buf, src_buf, size, bb_uuenc_tbl_base64); |
156 | if (fname) { | 156 | if (fname) { |
157 | printf("%s\n", eol); | 157 | puts(eol); |
158 | } else { | 158 | } else { |
159 | src_buf += size; | 159 | src_buf += size; |
160 | len -= size; | 160 | len -= size; |
diff --git a/mailutils/sendmail.c b/mailutils/sendmail.c index 9455b4e7a..4355e4dc5 100644 --- a/mailutils/sendmail.c +++ b/mailutils/sendmail.c | |||
@@ -375,7 +375,7 @@ int sendmail_main(int argc UNUSED_PARAM, char **argv) | |||
375 | // N.B. we need to escape the leading dot regardless of | 375 | // N.B. we need to escape the leading dot regardless of |
376 | // whether it is single or not character on the line | 376 | // whether it is single or not character on the line |
377 | if ('.' == s[0] /*&& '\0' == s[1] */) | 377 | if ('.' == s[0] /*&& '\0' == s[1] */) |
378 | printf("."); | 378 | bb_putchar('.'); |
379 | // dump read line | 379 | // dump read line |
380 | send_r_n(s); | 380 | send_r_n(s); |
381 | free(s); | 381 | free(s); |