aboutsummaryrefslogtreecommitdiff
path: root/tests/server/sws.c
diff options
context:
space:
mode:
authorDaniel Gustafsson <daniel@yesql.se>2017-04-17 11:04:48 +0200
committerDaniel Stenberg <daniel@haxx.se>2017-04-17 23:17:50 +0200
commitaaa7e05c786290e212035079060911020ff4d3ba (patch)
treea09adc224e40b5d653c8308918dd53c2519ddb70 /tests/server/sws.c
parentc25aba1254135a230971c1ed2a8140bde52b7b07 (diff)
code: fix typos and style in comments
A few random typos, and minor whitespace cleanups, found in comments while reading code. Closes #1423
Diffstat (limited to 'tests/server/sws.c')
-rw-r--r--tests/server/sws.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c
index 5646f965b..9f03fb6d1 100644
--- a/tests/server/sws.c
+++ b/tests/server/sws.c
@@ -1489,7 +1489,7 @@ static void http_connect(curl_socket_t *infdp,
maxfd = clientfd[i];
}
if(poll_client_wr[i] && toc[i]) {
- /* unless told not to do so, monitor writeability
+ /* unless told not to do so, monitor writability
if there is data ready to be sent to client */
FD_SET(clientfd[i], &output);
if(clientfd[i] > maxfd)
@@ -1505,7 +1505,7 @@ static void http_connect(curl_socket_t *infdp,
maxfd = serverfd[i];
}
if(poll_server_wr[i] && tos[i]) {
- /* unless told not to do so, monitor writeability
+ /* unless told not to do so, monitor writability
if there is data ready to be sent to server */
FD_SET(serverfd[i], &output);
if(serverfd[i] > maxfd)
@@ -1598,7 +1598,7 @@ static void http_connect(curl_socket_t *infdp,
/* ---------------------------------------------------------- */
- /* react to tunnel endpoint readable/writeable notifications */
+ /* react to tunnel endpoint readable/writable notifications */
for(i = 0; i <= max_tunnel_idx; i++) {
size_t len;
if(clientfd[i] != CURL_SOCKET_BAD) {
@@ -1894,7 +1894,7 @@ static int service_connection(curl_socket_t msgsock, struct httprequest *req,
while(!req->done_processing) {
int rc = get_request(msgsock, req);
if(rc <= 0) {
- /* Nothing further to read now (possibly because the socket was closed */
+ /* Nothing further to read now, possibly because the socket was closed */
return rc;
}
}
@@ -2255,7 +2255,7 @@ int main(int argc, char *argv[])
if(got_exit_signal)
goto sws_cleanup;
- /* Set up for select*/
+ /* Set up for select */
FD_ZERO(&input);
FD_ZERO(&output);
@@ -2281,7 +2281,7 @@ int main(int argc, char *argv[])
goto sws_cleanup;
if(rc == 0) {
- /* Timed out - try again*/
+ /* Timed out - try again */
continue;
}