summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2015-07-17 19:46:53 +0200
committerSébastien Helleu <flashcode@flashtux.org>2015-07-17 19:46:53 +0200
commit86886e311a0301bc9ebcc9a9981ab2e66a9848a7 (patch)
treeddc63a4fc2fab0233aa1406df46638b779930ca1
parente29cb9a85afac41641484d6e406f33528f2ef551 (diff)
downloadweechat-86886e311a0301bc9ebcc9a9981ab2e66a9848a7.zip
core: fix format of comment
-rw-r--r--src/core/wee-network.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/wee-network.c b/src/core/wee-network.c
index fd981190c..92aa021ab 100644
--- a/src/core/wee-network.c
+++ b/src/core/wee-network.c
@@ -621,7 +621,8 @@ network_connect (int sock, const struct sockaddr *addr, socklen_t addrlen)
if (errno != EINPROGRESS)
return 0;
- /* for non-blocking sockets, the connect() may fail with EINPROGRESS,
+ /*
+ * for non-blocking sockets, the connect() may fail with EINPROGRESS,
* if this happens, we wait for writability on socket and check
* the option SO_ERROR, which is 0 if connect is OK (see man connect)
*/