aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorGravatar Laurent Licour <laurent@licour.com> 2015-05-03 10:32:56 +0200
committerGravatar Sven Nierlein <sven@nierlein.de> 2015-10-02 21:12:58 +0200
commit1861e6a2d911e3adf250e3c33720b8f56d0abbdf (patch)
tree9aabcaa62426eefcb15036e9bf6eab30cccfb7ce /plugins/check_http.c
parent44ba1f7064a1bd73e80f7abd3fd9d29c57c8959d (diff)
downloadmonitoring-plugins-1861e6a2d911e3adf250e3c33720b8f56d0abbdf.tar.gz
plugins/check_http.c - fix regression introduced in commit 388ea928 (Host header)
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index b73e2d97..9dc27656 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -930,7 +930,7 @@ check_http (void)
/* check if Host header is explicitly set in options */
if (http_opt_headers_count) {
for (i = 0; i < http_opt_headers_count ; i++) {
- if (strcmp(http_opt_headers[i], "Host: ")) {
+ if (strncmp(http_opt_headers[i], "Host:", 5) == 0) {
force_host_header = http_opt_headers[i];
}
}