diff options
author | Matthias Eble <psychotrahe@users.sourceforge.net> | 2008-03-14 22:35:29 (GMT) |
---|---|---|
committer | Matthias Eble <psychotrahe@users.sourceforge.net> | 2008-03-14 22:35:29 (GMT) |
commit | 082c32f972e1fcc8f8666a3d406965a34cb3adca (patch) | |
tree | 60488e3472ce8446bc1707f5885a43f1008d0ec2 | |
parent | 9188225da4af5d09a59590a563b5516879b81579 (diff) | |
download | monitoring-plugins-082c32f972e1fcc8f8666a3d406965a34cb3adca.tar.gz |
Enhanced check_smtp to actually print invalid response text (#1911239)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1942 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | plugins/check_smtp.c | 6 |
1 files changed, 3 insertions, 3 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 | } |