diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_curl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 9e13766..73b3aad 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -129,7 +129,7 @@ int invert_regex = 0; | |||
129 | 129 | ||
130 | char *server_address; | 130 | char *server_address; |
131 | char *host_name; | 131 | char *host_name; |
132 | char *server_url = DEFAULT_SERVER_URL; | 132 | char *server_url = 0; |
133 | char server_ip[DEFAULT_BUFFER_SIZE]; | 133 | char server_ip[DEFAULT_BUFFER_SIZE]; |
134 | struct curl_slist *server_ips = NULL; | 134 | struct curl_slist *server_ips = NULL; |
135 | unsigned short server_port = HTTP_PORT; | 135 | unsigned short server_port = HTTP_PORT; |
@@ -1160,6 +1160,8 @@ process_arguments (int argc, char **argv) | |||
1160 | strcpy (argv[c], "-n"); | 1160 | strcpy (argv[c], "-n"); |
1161 | } | 1161 | } |
1162 | 1162 | ||
1163 | server_url = strdup(DEFAULT_SERVER_URL); | ||
1164 | |||
1163 | while (1) { | 1165 | while (1) { |
1164 | c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); | 1166 | c = getopt_long (argc, argv, "Vvh46t:c:w:A:k:H:P:j:T:I:a:b:d:e:p:s:R:r:u:f:C:J:K:nlLS::m:M:NE", longopts, &option); |
1165 | if (c == -1 || c == EOF || c == 1) | 1167 | if (c == -1 || c == EOF || c == 1) |