diff options
author | Matthias Eble <psychotrahe@users.sourceforge.net> | 2008-03-14 22:35:29 +0000 |
---|---|---|
committer | Matthias Eble <psychotrahe@users.sourceforge.net> | 2008-03-14 22:35:29 +0000 |
commit | 082c32f972e1fcc8f8666a3d406965a34cb3adca (patch) | |
tree | 60488e3472ce8446bc1707f5885a43f1008d0ec2 /plugins | |
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
Diffstat (limited to 'plugins')
-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 97208b05..b1fc7ee0 100644 --- a/plugins/check_smtp.c +++ b/plugins/check_smtp.c @@ -194,10 +194,10 @@ main (int argc, char **argv) /* make sure we find the response we are looking for */ if (!strstr (buffer, server_expect)) { if (server_port == SMTP_PORT) - printf (_("Invalid SMTP response received from host\n")); + printf (_("Invalid SMTP response received from host: %s\n"), buffer); else - printf (_("Invalid SMTP response received from host on port %d\n"), - server_port); + printf (_("Invalid SMTP response received from host on port %d: %s\n"), + server_port, buffer); result = STATE_WARNING; } } |