summaryrefslogtreecommitdiffstats
path: root/plugins/check_curl.d/check_curl_helpers.h
diff options
context:
space:
mode:
authorLorenz Kästle <12514511+RincewindsHat@users.noreply.github.com>2025-12-28 13:07:34 +0100
committerGitHub <noreply@github.com>2025-12-28 13:07:34 +0100
commitf861729abd01d541396b88412b94470309b3aaa1 (patch)
treea59497cac234ad505e61f6f9e8b4b369b1e5bce0 /plugins/check_curl.d/check_curl_helpers.h
parent9bf9761d8700806892c7c5ffa389121a2b6ac4f1 (diff)
parentd36bf51baf2338cc7f49601f679548960a8299c0 (diff)
downloadmonitoring-plugins-f861729a.tar.gz
Merge pull request #2210 from sthen/curl_types
fix types for most curl_easy_setopt parameters
Diffstat (limited to 'plugins/check_curl.d/check_curl_helpers.h')
-rw-r--r--plugins/check_curl.d/check_curl_helpers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/check_curl.d/check_curl_helpers.h b/plugins/check_curl.d/check_curl_helpers.h
index e7b80f7e..e77b763b 100644
--- a/plugins/check_curl.d/check_curl_helpers.h
+++ b/plugins/check_curl.d/check_curl_helpers.h
@@ -80,7 +80,7 @@ check_curl_configure_curl_wrapper check_curl_configure_curl(check_curl_static_cu
80 check_curl_working_state working_state, 80 check_curl_working_state working_state,
81 bool check_cert, 81 bool check_cert,
82 bool on_redirect_dependent, 82 bool on_redirect_dependent,
83 int follow_method, int max_depth); 83 int follow_method, long max_depth);
84 84
85void handle_curl_option_return_code(CURLcode res, const char *option); 85void handle_curl_option_return_code(CURLcode res, const char *option);
86 86