diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-12-19 10:08:06 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-12-19 10:08:06 +0000 |
commit | 65e066acfa53f01abeab0ebf3f319110a104aaa1 (patch) | |
tree | 67fe5ffd42a8d845ddaeb74f7bc16dbad167b2ba | |
parent | 250a82a57c9b467ff14036907b4fdaa5dc95bfd0 (diff) | |
download | monitoring-plugins-65e066acfa53f01abeab0ebf3f319110a104aaa1.tar.gz |
check_tcp now returns UNKNOWN with an invalid hostname on command line
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1879 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | plugins/check_tcp.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -2,6 +2,7 @@ This file documents the major additions and syntax changes between releases. | |||
2 | 2 | ||
3 | 1.4.12 or 1.5 ?? | 3 | 1.4.12 or 1.5 ?? |
4 | Added ./check_nt -v INSTANCES to count number of instances (Alessandro Ren) | 4 | Added ./check_nt -v INSTANCES to count number of instances (Alessandro Ren) |
5 | check_tcp now returns UNKNOWN with invalid hostname | ||
5 | 6 | ||
6 | 1.4.11 13th December 2007 | 7 | 1.4.11 13th December 2007 |
7 | Fixed check_http regression in 1.4.10 where following redirects to | 8 | Fixed check_http regression in 1.4.10 where following redirects to |
diff --git a/plugins/check_tcp.c b/plugins/check_tcp.c index e502c0d1..7e470096 100644 --- a/plugins/check_tcp.c +++ b/plugins/check_tcp.c | |||
@@ -584,7 +584,7 @@ process_arguments (int argc, char **argv) | |||
584 | if (server_address == NULL) | 584 | if (server_address == NULL) |
585 | usage4 (_("You must provide a server address")); | 585 | usage4 (_("You must provide a server address")); |
586 | else if (server_address[0] != '/' && is_host (server_address) == FALSE) | 586 | else if (server_address[0] != '/' && is_host (server_address) == FALSE) |
587 | die (STATE_CRITICAL, "%s %s - %s: %s\n", SERVICE, state_text(STATE_CRITICAL), _("Invalid hostname, address or socket"), server_address); | 587 | die (STATE_UNKNOWN, "%s %s - %s: %s\n", SERVICE, state_text(STATE_UNKNOWN), _("Invalid hostname, address or socket"), server_address); |
588 | 588 | ||
589 | return TRUE; | 589 | return TRUE; |
590 | } | 590 | } |