diff options
Diffstat (limited to 'plugins/t')
0 files changed, 0 insertions, 0 deletions
diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 32d919f..7da84de 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c | |||
@@ -1054,7 +1054,7 @@ redir (curlhelp_write_curlbuf* header_buf) | |||
1054 | char *new_url; | 1054 | char *new_url; |
1055 | 1055 | ||
1056 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, | 1056 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, |
1057 | &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, | 1057 | &status_line.http_major, &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, |
1058 | headers, &nof_headers, 0); | 1058 | headers, &nof_headers, 0); |
1059 | 1059 | ||
1060 | location = get_header_value (headers, nof_headers, "location"); | 1060 | location = get_header_value (headers, nof_headers, "location"); |
@@ -2200,7 +2200,7 @@ check_document_dates (const curlhelp_write_curlbuf *header_buf, char (*msg)[DEFA | |||
2200 | size_t msglen; | 2200 | size_t msglen; |
2201 | 2201 | ||
2202 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, | 2202 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, |
2203 | &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, | 2203 | &status_line.http_major, &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, |
2204 | headers, &nof_headers, 0); | 2204 | headers, &nof_headers, 0); |
2205 | 2205 | ||
2206 | server_date = get_header_value (headers, nof_headers, "date"); | 2206 | server_date = get_header_value (headers, nof_headers, "date"); |
@@ -2258,7 +2258,7 @@ get_content_length (const curlhelp_write_curlbuf* header_buf, const curlhelp_wri | |||
2258 | curlhelp_statusline status_line; | 2258 | curlhelp_statusline status_line; |
2259 | 2259 | ||
2260 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, | 2260 | int res = phr_parse_response (header_buf->buf, header_buf->buflen, |
2261 | &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, | 2261 | &status_line.http_major, &status_line.http_minor, &status_line.http_code, &status_line.msg, &msglen, |
2262 | headers, &nof_headers, 0); | 2262 | headers, &nof_headers, 0); |
2263 | 2263 | ||
2264 | content_length_s = get_header_value (headers, nof_headers, "content-length"); | 2264 | content_length_s = get_header_value (headers, nof_headers, "content-length"); |