diff options
author | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-20 12:19:46 +0100 |
---|---|---|
committer | Denys Vlasenko <dvlasenk@redhat.com> | 2010-12-20 12:19:46 +0100 |
commit | 51d714ce7e8d68f0762d89b2a67cf42d2c991685 (patch) | |
tree | 5fee1abe21c5ed48f12c0d09cbf81b2bfb46a94d | |
parent | 5707b52fd4de0d9d5ebb496f459fa4fa66215226 (diff) | |
download | busybox-w32-51d714ce7e8d68f0762d89b2a67cf42d2c991685.tar.gz busybox-w32-51d714ce7e8d68f0762d89b2a67cf42d2c991685.tar.bz2 busybox-w32-51d714ce7e8d68f0762d89b2a67cf42d2c991685.zip |
sendmail: remove forgotten commenting-out on a "if (verbose)"
Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com>
-rw-r--r-- | mailutils/sendmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
63 | // if code != -1 then checks whether the number equals the code | 63 | // if code != -1 then checks whether the number equals the code |
64 | // if not equal -> die saying msg | 64 | // if not equal -> die saying msg |
65 | while ((answer = xmalloc_fgetline(stdin)) != NULL) { | 65 | while ((answer = xmalloc_fgetline(stdin)) != NULL) { |
66 | // if (verbose) | 66 | if (verbose) |
67 | bb_error_msg("recv:'%.*s' %d", (int)(strchrnul(answer, '\r') - answer), answer, verbose); | 67 | bb_error_msg("recv:'%.*s' %d", (int)(strchrnul(answer, '\r') - answer), answer, verbose); |
68 | if (strlen(answer) <= 3 || '-' != answer[3]) | 68 | if (strlen(answer) <= 3 || '-' != answer[3]) |
69 | break; | 69 | break; |