From 02634d3bf0932b8bde43a881d67760f38e3f9e9f Mon Sep 17 00:00:00 2001 From: Sergey Poznyakoff Date: Thu, 17 Mar 2011 01:30:34 +0200 Subject: Bugfixes. * comsat/action.c (action_echo): Set omit_newline. * libmailutils/mailbox/mbx_default.c: Return 0 on success. Fix memory overrun. * libproto/mailer/smtp.c (smtp_open): Protect tls-related code with #ifdef WITH_TLS. * libproto/pop/mbox.c (pop_open): Likewise. * mu/imap.c (com_connect): Likewise. * mh/mhn.c (split_args): Preserve quotes. (mhn_compose_command): Handle type arguments (%a escape). (mhn_show_command): Likewise. (store_handler): Fix call to mh_getyn. (edit_mime): Pass typeargs to mhn_compose_command. Fix test for missing filename. * mh/tests/ali.at (ali04): The test wrongly assumed that the `root' group has some members. * mh/tests/folder.at: Always sort the output from find. * mh/tests/rmf.at: Likewise. * mh/tests/mhn.at: Likewise. Filter out timestamps from the tar output produced by mhn. * tests/testsuite.at (MH_SETUP): Define moreproc. * mh/tests/mhparam.at: Account for changes in mh_profile --- comsat/action.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'comsat') diff --git a/comsat/action.c b/comsat/action.c index a5a5ff75e..81cdf2861 100644 --- a/comsat/action.c +++ b/comsat/action.c @@ -353,6 +353,9 @@ action_echo (struct biffrc_environ *env, size_t argc, char **argv) omit_newline = 1; i++; } + else + omit_newline = 0; + for (;;) { echo_string (env->tty, argv[i]); -- cgit v1.2.1