diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_smtp.c b/plugins/check_smtp.c index 97208b0..b1fc7ee 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c | |||
@@ -194,10 +194,10 @@ main (int argc, char **argv) | |||
194 | /* make sure we find the response we are looking for */ | 194 | /* make sure we find the response we are looking for */ |
195 | if (!strstr (buffer, server_expect)) { | 195 | if (!strstr (buffer, server_expect)) { |
196 | if (server_port == SMTP_PORT) | 196 | if (server_port == SMTP_PORT) |
197 | printf (_("Invalid SMTP response received from host\n")); | 197 | printf (_("Invalid SMTP response received from host: %s\n"), buffer); |
198 | else | 198 | else |
199 | printf (_("Invalid SMTP response received from host on port %d\n"), | 199 | printf (_("Invalid SMTP response received from host on port %d: %s\n"), |
200 | server_port); | 200 | server_port, buffer); |
201 | result = STATE_WARNING; | 201 | result = STATE_WARNING; |
202 | } | 202 | } |
203 | } | 203 | } |