From 1c0134a994fea8b552f217ae4ddd92b3e5062559 Mon Sep 17 00:00:00 2001 From: Ahmet Oeztuerk Date: Fri, 19 Dec 2025 17:36:52 +0100 Subject: [PATCH] fix typo with proxy scheme socks5a->socks5h --- plugins/check_curl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/check_curl.c b/plugins/check_curl.c index 47ffc265..88aeb7c6 100644 --- a/plugins/check_curl.c +++ b/plugins/check_curl.c @@ -1621,7 +1621,7 @@ void print_help(void) { "\"critical\",\"warning\"")); printf(" %s\n", "-x, --proxy=PROXY_SERVER"); printf(" %s\n", _("Specify the proxy in form of ://:")); - printf(" %s\n", _("Available schemes are http, https, socks4, socks4a, socks5, socks5a")); + printf(" %s\n", _("Available schemes are http, https, socks4, socks4a, socks5, socks5h")); printf(" %s\n", _("If port is not specified, libcurl defaults to 1080")); printf(" %s\n", _("This value will be set as CURLOPT_PROXY")); printf(" %s\n", "-a, --authorization=AUTH_PAIR");