diff options
author | dartraiden <wowemuh@gmail.com> | 2025-06-04 10:22:08 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2025-06-04 10:27:15 +0300 |
commit | b14c227e81e60d9d87b6a56074d47f8b92727db8 (patch) | |
tree | 55d8efd8f7d593a520c01c918fdfd0f81e8605ca /libs/libcurl/src/socks.c | |
parent | 114ca3aa13683f413d2297e675741f54b87dd151 (diff) |
libcurl: update to 8.14.1
Diffstat (limited to 'libs/libcurl/src/socks.c')
-rw-r--r-- | libs/libcurl/src/socks.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/libcurl/src/socks.c b/libs/libcurl/src/socks.c index 794f4296ff..cf99ab1f53 100644 --- a/libs/libcurl/src/socks.c +++ b/libs/libcurl/src/socks.c @@ -394,7 +394,7 @@ CONNECT_REQ_INIT: /*
* This is currently not supporting "Identification Protocol (RFC1413)".
*/
- socksreq[8] = 0; /* ensure empty userid is NUL-terminated */
+ socksreq[8] = 0; /* ensure empty userid is null-terminated */
if(sx->proxy_user) {
size_t plen = strlen(sx->proxy_user);
if(plen > 255) {
|