[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Mon Nov 2 20:59:18 UTC 2015
The branch master has been updated
via 2c9be7d09f4566f7fb78d168acd5038dd4384ca5 (commit)
from 009e9d99a325992096b6112c16b190e47fd1d166 (commit)
- Log -----------------------------------------------------------------
commit 2c9be7d09f4566f7fb78d168acd5038dd4384ca5
Author: Richard Levitte <levitte at openssl.org>
Date: Mon Nov 2 21:18:34 2015 +0100
Fix usage of BIO_ctrl_set_connected
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
apps/s_client.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/apps/s_client.c b/apps/s_client.c
index 9bad1b5..fc0174f 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -1379,7 +1379,7 @@ int s_client_main(int argc, char **argv)
goto end;
}
- (void)BIO_ctrl_set_connected(sbio, 1, &peer);
+ (void)BIO_ctrl_set_connected(sbio, &peer);
if (enable_timeouts) {
timeout.tv_sec = 0;
More information about the openssl-commits
mailing list