diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-17 12:34:25 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2020-12-17 12:34:25 +0100 |
commit | b6237c0657074e8a61b2123601df36389659b603 (patch) | |
tree | 29b0dedd34e238c187fb3c270bf2e4fc2f6522c1 /mailutils/popmaildir.c | |
parent | 25b2680056454dc4761ba3b2efde7c3414738f8c (diff) | |
download | busybox-b6237c0657074e8a61b2123601df36389659b603.tar.gz |
mail: commonalize send_r_n()
function old new delta
send_mail_command 85 55 -30
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'mailutils/popmaildir.c')
-rw-r--r-- | mailutils/popmaildir.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mailutils/popmaildir.c b/mailutils/popmaildir.c index 4f2d4124d..1f2db2892 100644 --- a/mailutils/popmaildir.c +++ b/mailutils/popmaildir.c @@ -68,6 +68,7 @@ static void pop3_checkr(const char *fmt, const char *param, char **ret) { char *msg = send_mail_command(fmt, param); +//FIXME: limit max len!!! char *answer = xmalloc_fgetline(stdin); if (answer && '+' == answer[0]) { free(msg); |