summaryrefslogtreecommitdiffstats
path: root/demos/easy_tls
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2015-01-19 13:42:01 +0100
committerMatt Caswell <matt@openssl.org>2015-01-22 10:20:06 +0100
commite636e2acd753fb68f587c9fac2f381ad8c153528 (patch)
tree356224f7a2b351eeba71d2d44121a24fb072397b /demos/easy_tls
parentYet more comments (diff)
downloadopenssl-e636e2acd753fb68f587c9fac2f381ad8c153528.tar.xz
openssl-e636e2acd753fb68f587c9fac2f381ad8c153528.zip
Fix source where indent will not be able to cope
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'demos/easy_tls')
-rw-r--r--demos/easy_tls/easy-tls.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/demos/easy_tls/easy-tls.c b/demos/easy_tls/easy-tls.c
index cc93e05c54..2e06d06d91 100644
--- a/demos/easy_tls/easy-tls.c
+++ b/demos/easy_tls/easy-tls.c
@@ -809,8 +809,9 @@ max(int a, int b)
return a > b ? a : b;
}
+/* timeout, -1 means no timeout */
static void
-tls_sockets_select(int read_select_1, int read_select_2, int write_select_1, int write_select_2, int seconds /* timeout, -1 means no timeout */)
+tls_sockets_select(int read_select_1, int read_select_2, int write_select_1, int write_select_2, int seconds)
{
int maxfd, n;
fd_set reads, writes;