mirror of
https://github.com/moparisthebest/curl
synced 2024-11-10 11:35:07 -05:00
lib: fix typos in comments and errormessages
This fixes a few randomly spotted typos in recently merged code, most notably one in a userfacing errormessage the schannel code.
This commit is contained in:
parent
bcd9813588
commit
10822c652c
@ -50,7 +50,7 @@ struct MQTT {
|
|||||||
char *sendleftovers;
|
char *sendleftovers;
|
||||||
size_t nsend; /* size of sendleftovers */
|
size_t nsend; /* size of sendleftovers */
|
||||||
|
|
||||||
/* when receving */
|
/* when receiving */
|
||||||
size_t npacket; /* byte counter */
|
size_t npacket; /* byte counter */
|
||||||
unsigned char firstbyte;
|
unsigned char firstbyte;
|
||||||
size_t remaining_length;
|
size_t remaining_length;
|
||||||
|
@ -1741,10 +1741,10 @@ static CURLcode smtp_parse_custom_request(struct connectdata *conn)
|
|||||||
* Notes:
|
* Notes:
|
||||||
*
|
*
|
||||||
* Should a UTF-8 host name require conversion to IDN ACE and we cannot honor
|
* Should a UTF-8 host name require conversion to IDN ACE and we cannot honor
|
||||||
* that convertion then we shall return success. This allow the caller to send
|
* that conversion then we shall return success. This allow the caller to send
|
||||||
* the data to the server as a U-label (as per RFC-6531 sect. 3.2).
|
* the data to the server as a U-label (as per RFC-6531 sect. 3.2).
|
||||||
*
|
*
|
||||||
* If an mailbox '@' seperator cannot be located then the mailbox is considered
|
* If an mailbox '@' separator cannot be located then the mailbox is considered
|
||||||
* to be either a local mailbox or an invalid mailbox (depending on what the
|
* to be either a local mailbox or an invalid mailbox (depending on what the
|
||||||
* calling function deems it to be) then the input will simply be returned in
|
* calling function deems it to be) then the input will simply be returned in
|
||||||
* the address part with the host name being NULL.
|
* the address part with the host name being NULL.
|
||||||
@ -1765,7 +1765,7 @@ static CURLcode smtp_parse_address(struct connectdata *conn, const char *fqma,
|
|||||||
if(dup[length - 1] == '>')
|
if(dup[length - 1] == '>')
|
||||||
dup[length - 1] = '\0';
|
dup[length - 1] = '\0';
|
||||||
|
|
||||||
/* Extract the host name from the addresss (if we can) */
|
/* Extract the host name from the address (if we can) */
|
||||||
host->name = strpbrk(dup, "@");
|
host->name = strpbrk(dup, "@");
|
||||||
if(host->name) {
|
if(host->name) {
|
||||||
*host->name = '\0';
|
*host->name = '\0';
|
||||||
|
@ -679,7 +679,7 @@ schannel_connect_step1(struct connectdata *conn, int sockindex)
|
|||||||
CERT_FIND_ANY, NULL, NULL);
|
CERT_FIND_ANY, NULL, NULL);
|
||||||
|
|
||||||
if(client_certs[0] == NULL) {
|
if(client_certs[0] == NULL) {
|
||||||
failf(data, "schannel: Failed to get certificat from file %s"
|
failf(data, "schannel: Failed to get certificate from file %s"
|
||||||
", last error is 0x%x",
|
", last error is 0x%x",
|
||||||
data->set.ssl.cert, GetLastError());
|
data->set.ssl.cert, GetLastError());
|
||||||
CertCloseStore(cert_store, 0);
|
CertCloseStore(cert_store, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user