summaryrefslogtreecommitdiffstats
path: root/plugins/check_http.c
diff options
context:
space:
mode:
authorLorenz <12514511+RincewindsHat@users.noreply.github.com>2022-11-05 12:59:45 (GMT)
committerGitHub <noreply@github.com>2022-11-05 12:59:45 (GMT)
commitedc84e5d669089fa3f047dc52740679e7cb58fc1 (patch)
tree09626f01278b2f29350fe06d3122d5b1be4e06a8 /plugins/check_http.c
parent2d9c6276d0a380f831bf94734359f071d0c7e958 (diff)
downloadmonitoring-plugins-edc84e5d669089fa3f047dc52740679e7cb58fc1.tar.gz
Remove superflous CRLF in HTTP-Requests in check_http (#1798)
* Remove superflous CRLF in HTTP-Requests in check_http
Diffstat (limited to 'plugins/check_http.c')
-rw-r--r--plugins/check_http.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/plugins/check_http.c b/plugins/check_http.c
index ff39c59..41d4781 100644
--- a/plugins/check_http.c
+++ b/plugins/check_http.c
@@ -1070,9 +1070,8 @@ check_http (void)
1070 } 1070 }
1071 1071
1072 xasprintf (&buf, "%sContent-Length: %i\r\n\r\n", buf, (int)strlen (http_post_data)); 1072 xasprintf (&buf, "%sContent-Length: %i\r\n\r\n", buf, (int)strlen (http_post_data));
1073 xasprintf (&buf, "%s%s%s", buf, http_post_data, CRLF); 1073 xasprintf (&buf, "%s%s", buf, http_post_data);
1074 } 1074 } else {
1075 else {
1076 /* or just a newline so the server knows we're done with the request */ 1075 /* or just a newline so the server knows we're done with the request */
1077 xasprintf (&buf, "%s%s", buf, CRLF); 1076 xasprintf (&buf, "%s%s", buf, CRLF);
1078 } 1077 }