mirror of
https://github.com/curl/curl.git
synced 2026-07-30 11:28:05 +03:00
code: language cleanup in comments
Based on the standards and guidelines we use for our documentation. - expand contractions (they're => they are etc) - host name = > hostname - file name => filename - user name = username - man page => manpage - run-time => runtime - set-up => setup - back-end => backend - a HTTP => an HTTP - Two spaces after a period => one space after period Closes #14073
This commit is contained in:
parent
9b683577e1
commit
c074ba64a8
213 changed files with 1719 additions and 1715 deletions
|
|
@ -155,7 +155,7 @@ int Curl_socketpair(int domain, int type, int protocol,
|
|||
socks[0] = socks[1] = CURL_SOCKET_BAD;
|
||||
|
||||
#if defined(_WIN32) || defined(__CYGWIN__)
|
||||
/* don't set SO_REUSEADDR on Windows */
|
||||
/* do not set SO_REUSEADDR on Windows */
|
||||
(void)reuse;
|
||||
#ifdef SO_EXCLUSIVEADDRUSE
|
||||
{
|
||||
|
|
@ -183,7 +183,7 @@ int Curl_socketpair(int domain, int type, int protocol,
|
|||
if(connect(socks[0], &a.addr, sizeof(a.inaddr)) == -1)
|
||||
goto error;
|
||||
|
||||
/* use non-blocking accept to make sure we don't block forever */
|
||||
/* use non-blocking accept to make sure we do not block forever */
|
||||
if(curlx_nonblock(listener, TRUE) < 0)
|
||||
goto error;
|
||||
pfd[0].fd = listener;
|
||||
|
|
@ -217,7 +217,7 @@ int Curl_socketpair(int domain, int type, int protocol,
|
|||
nread = sread(socks[1], p, s);
|
||||
if(nread == -1) {
|
||||
int sockerr = SOCKERRNO;
|
||||
/* Don't block forever */
|
||||
/* Do not block forever */
|
||||
if(Curl_timediff(Curl_now(), start) > (60 * 1000))
|
||||
goto error;
|
||||
if(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue