diff options
-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; |