mirror of
https://github.com/curl/curl.git
synced 2026-08-26 05:23:33 +03:00
misc: spelling fixes
Found using codespell 2.2.1. Also delete the redundant protocol designator from an archive.org URL. Reviewed-by: Daniel Stenberg Closes #9403
This commit is contained in:
parent
f2daef6ad4
commit
c9061f242b
18 changed files with 26 additions and 24 deletions
|
|
@ -955,14 +955,16 @@ socks_proxy_info_matches(const struct proxy_info *data,
|
|||
see https://datatracker.ietf.org/doc/html/rfc3986#section-3.2.1 */
|
||||
if(!data->user != !needle->user)
|
||||
return FALSE;
|
||||
/* curl_strequal does a case insentive comparison, so do not use it here! */
|
||||
/* curl_strequal does a case insensitive comparison,
|
||||
so do not use it here! */
|
||||
if(data->user &&
|
||||
needle->user &&
|
||||
strcmp(data->user, needle->user) != 0)
|
||||
return FALSE;
|
||||
if(!data->passwd != !needle->passwd)
|
||||
return FALSE;
|
||||
/* curl_strequal does a case insentive comparison, so do not use it here! */
|
||||
/* curl_strequal does a case insensitive comparison,
|
||||
so do not use it here! */
|
||||
if(data->passwd &&
|
||||
needle->passwd &&
|
||||
strcmp(data->passwd, needle->passwd) != 0)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue