summaryrefslogtreecommitdiffstats
path: root/plugins/check_tcp.c
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-31 04:47:30 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-31 04:47:30 (GMT)
commite0a4206cddc524c4b444029d516b14b3ba191a60 (patch)
treeb1d2d5e389760285841732a160242a763f7455db /plugins/check_tcp.c
parentf9c189e9461a5aad6e90f8fd3e9082a9520d554d (diff)
downloadmonitoring-plugins-e0a4206cddc524c4b444029d516b14b3ba191a60.tar.gz
Fix Debian Bug #392610: check_jabber always return warning
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1599 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_tcp.c')
-rw-r--r--plugins/check_tcp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c
index 07fa0a9..d4d0322 100644
--- a/plugins/check_tcp.c
+++ b/plugins/check_tcp.c
@@ -166,9 +166,9 @@ main (int argc, char **argv)
166 } 166 }
167 else if (!strncmp(SERVICE, "JABBER", 6)) { 167 else if (!strncmp(SERVICE, "JABBER", 6)) {
168 SEND = "<stream:stream to=\'host\' xmlns=\'jabber:client\' xmlns:stream=\'http://etherx.jabber.org/streams\'>\n"; 168 SEND = "<stream:stream to=\'host\' xmlns=\'jabber:client\' xmlns:stream=\'http://etherx.jabber.org/streams\'>\n";
169 EXPECT = "<?xml version=\'1.0\'?><stream:stream xmlns:stream=\'http://etherx.jabber.org/streams\'"; 169 EXPECT = "<?xml version=\'1.0\'?><stream:stream xmlns=\'jabber:client\' xmlns:stream=\'http://etherx.jabber.org/streams\'";
170 QUIT = "</stream:stream>\n"; 170 QUIT = "</stream:stream>\n";
171 flags |= FLAG_SSL | FLAG_HIDE_OUTPUT; 171 flags |= FLAG_HIDE_OUTPUT;
172 PORT = 5222; 172 PORT = 5222;
173 } 173 }
174 else if (!strncmp (SERVICE, "NNTPS", 5)) { 174 else if (!strncmp (SERVICE, "NNTPS", 5)) {