mirror of
https://github.com/curl/curl.git
synced 2026-07-22 16:57:16 +03:00
cleanup: misc typos in strings and comments
Found via `codespell` Closes #2389
This commit is contained in:
parent
39dc0bca5b
commit
236402fc2d
16 changed files with 17 additions and 17 deletions
|
|
@ -104,7 +104,7 @@ CURLcode Curl_http_perhapsrewind(struct connectdata *conn);
|
|||
|
||||
This value used to be fairly big (100K), but we must take into account that
|
||||
if the server rejects the POST due for authentication reasons, this data
|
||||
will always be uncondtionally sent and thus it may not be larger than can
|
||||
will always be unconditionally sent and thus it may not be larger than can
|
||||
always be afforded to send twice.
|
||||
|
||||
It must not be greater than 64K to work on VMS.
|
||||
|
|
|
|||
|
|
@ -89,7 +89,7 @@ CURLcode Curl_input_negotiate(struct connectdata *conn, bool proxy,
|
|||
}
|
||||
}
|
||||
|
||||
/* Initilise the security context and decode our challenge */
|
||||
/* Initialize the security context and decode our challenge */
|
||||
result = Curl_auth_decode_spnego_message(data, userp, passwdp, service,
|
||||
host, header, neg_ctx);
|
||||
|
||||
|
|
|
|||
|
|
@ -241,7 +241,7 @@ static FILE * vmsfopenread(const char *file, const char *mode)
|
|||
static char *Curl_basename(char *path)
|
||||
{
|
||||
/* Ignore all the details above for now and make a quick and simple
|
||||
implementaion here */
|
||||
implementation here */
|
||||
char *s1;
|
||||
char *s2;
|
||||
|
||||
|
|
|
|||
|
|
@ -895,7 +895,7 @@ struct connectdata {
|
|||
well be the same we read from.
|
||||
CURL_SOCKET_BAD disables */
|
||||
|
||||
/** Dynamicly allocated strings, MUST be freed before this **/
|
||||
/** Dynamically allocated strings, MUST be freed before this **/
|
||||
/** struct is killed. **/
|
||||
struct dynamically_allocated_data {
|
||||
char *proxyuserpwd;
|
||||
|
|
|
|||
|
|
@ -1389,7 +1389,7 @@ static CURLcode darwinssl_connect_step1(struct connectdata *conn,
|
|||
#endif /* CURL_BUILD_MAC */
|
||||
|
||||
#if CURL_BUILD_MAC_10_8 || CURL_BUILD_IOS
|
||||
if(SSLCreateContext != NULL) { /* use the newer API if avaialble */
|
||||
if(SSLCreateContext != NULL) { /* use the newer API if available */
|
||||
if(BACKEND->ssl_ctx)
|
||||
CFRelease(BACKEND->ssl_ctx);
|
||||
BACKEND->ssl_ctx = SSLCreateContext(NULL, kSSLClientSide, kSSLStreamType);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue