From: Denys Vlasenko Date: Mon, 20 Dec 2010 11:19:46 +0000 (+0100) Subject: sendmail: remove forgotten commenting-out on a "if (verbose)" X-Git-Tag: 1_19_0~439 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=51d714ce7e8d68f0762d89b2a67cf42d2c991685;p=oweals%2Fbusybox.git sendmail: remove forgotten commenting-out on a "if (verbose)" Signed-off-by: Denys Vlasenko --- diff --git a/mailutils/sendmail.c b/mailutils/sendmail.c index a2eda6937..8096288ef 100644 --- a/mailutils/sendmail.c +++ b/mailutils/sendmail.c @@ -63,7 +63,7 @@ static int smtp_checkp(const char *fmt, const char *param, int code) // if code != -1 then checks whether the number equals the code // if not equal -> die saying msg while ((answer = xmalloc_fgetline(stdin)) != NULL) { -// if (verbose) + if (verbose) bb_error_msg("recv:'%.*s' %d", (int)(strchrnul(answer, '\r') - answer), answer, verbose); if (strlen(answer) <= 3 || '-' != answer[3]) break;