aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_real.c
diff options
context:
space:
mode:
authorGravatar Subhendu Ghosh <sghosh@users.sourceforge.net> 2003-04-16 15:06:31 +0000
committerGravatar Subhendu Ghosh <sghosh@users.sourceforge.net> 2003-04-16 15:06:31 +0000
commite01c91d3a039038c7f6be5a323fadf2b595f1409 (patch)
treec44a316649877a7380e6bde8b3cd742af3c46f1d /plugins/check_real.c
parent48ad288b899bc1f10b6ee18514b6fef51c8eb17a (diff)
downloadmonitoring-plugins-e01c91d3a039038c7f6be5a323fadf2b595f1409.tar.gz
reset to old behavior of not checking stream by default
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@493 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_real.c')
-rw-r--r--plugins/check_real.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/check_real.c b/plugins/check_real.c
index 6b484eac..272aab61 100644
--- a/plugins/check_real.c
+++ b/plugins/check_real.c
@@ -63,7 +63,7 @@ void print_usage (void);
int server_port = PORT;
char *server_address = "";
char *host_name = "";
-char *server_url = "/";
+char *server_url = NULL;
char *server_expect = EXPECT;
int warning_time = 0;
int check_warning_time = FALSE;
@@ -162,7 +162,7 @@ main (int argc, char **argv)
}
/* Part II - Check stream exists and is ok */
- if (result == STATE_OK) {
+ if ((result == STATE_OK )&& (server_url != NULL) ) {
/* Part I - Server Check */