diff options
author | Andreas Baumann <mail@andreasbaumann.cc> | 2017-04-28 08:39:13 +0200 |
---|---|---|
committer | Sven Nierlein <sven@nierlein.de> | 2018-10-22 16:30:31 +0200 |
commit | efa7e2c1e7e90b83793cc63aa849c315f6d5d809 (patch) | |
tree | 1d7eb47361a1278e70bdec91e1dc7521ac719381 /plugins | |
parent | 5d9104f07fd52ff3d23107fa9800c8b2a331987f (diff) | |
download | monitoring-plugins-efa7e2c1e7e90b83793cc63aa849c315f6d5d809.tar.gz |
changed URL construction again, IP should preceed hostname, hostname set as Host: (makes sure we get the corrent DNS entry and server)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/check_curl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index babbcd5e..de105fbe 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -328,7 +328,7 @@ check_http (void) /* compose URL */ snprintf (url, DEFAULT_BUFFER_SIZE, "%s://%s%s", use_ssl ? "https" : "http", - host_name ? host_name : server_address, server_url); + server_address ? server_address : host_name, server_url); handle_curl_option_return_code (curl_easy_setopt (curl, CURLOPT_URL, url), "CURLOPT_URL"); /* set port */ |