summaryrefslogtreecommitdiff
path: root/libs/libcurl/src/noproxy.c
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2025-06-04 10:22:08 +0300
committerdartraiden <wowemuh@gmail.com>2025-06-04 10:27:15 +0300
commitb14c227e81e60d9d87b6a56074d47f8b92727db8 (patch)
tree55d8efd8f7d593a520c01c918fdfd0f81e8605ca /libs/libcurl/src/noproxy.c
parent114ca3aa13683f413d2297e675741f54b87dd151 (diff)
libcurl: update to 8.14.1
Diffstat (limited to 'libs/libcurl/src/noproxy.c')
-rw-r--r--libs/libcurl/src/noproxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/noproxy.c b/libs/libcurl/src/noproxy.c
index 6ab99566f3..f1f40aeaa5 100644
--- a/libs/libcurl/src/noproxy.c
+++ b/libs/libcurl/src/noproxy.c
@@ -234,7 +234,7 @@ bool Curl_check_noproxy(const char *name, const char *no_proxy)
/* if the bits variable gets a crazy value here, that is fine as
the value will then be rejected in the cidr function */
bits = (unsigned int)atoi(slash + 1);
- *slash = 0; /* null terminate there */
+ *slash = 0; /* null-terminate there */
}
if(type == TYPE_IPV6)
match = Curl_cidr6_match(name, check, bits);