summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-04-24 06:55:11 (GMT)
committerSven Nierlein <sven@nierlein.de>2018-10-22 14:30:31 (GMT)
commitac08e9b2751a93dd65b5b66b59063f098ef2dc26 (patch)
tree4a6a3c46d9e746183e3a8dc51bae60803310bdf7
parent7c74b772ed0b35699e57ecbe8789b0436a6c67ee (diff)
downloadmonitoring-plugins-ac08e9b2751a93dd65b5b66b59063f098ef2dc26.tar.gz
reverted hostname in URL, must use CURL_RESOLVE mayabe
-rw-r--r--plugins/check_curl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c
index 87fa1da..e26d8d3 100644
--- a/plugins/check_curl.c
+++ b/plugins/check_curl.c
@@ -327,7 +327,7 @@ check_http (void)
327 snprintf (url, DEFAULT_BUFFER_SIZE, "%s://%s%s", use_ssl ? "https" : "http", 327 snprintf (url, DEFAULT_BUFFER_SIZE, "%s://%s%s", use_ssl ? "https" : "http",
328 host_name, server_url); 328 host_name, server_url);
329 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_URL, url), "CURLOPT_URL"); 329 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_URL, url), "CURLOPT_URL");
330 330
331 /* set port */ 331 /* set port */
332 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PORT, server_port), "CURLOPT_PORT"); 332 handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_PORT, server_port), "CURLOPT_PORT");
333 333