commit | 2c9be7d09f4566f7fb78d168acd5038dd4384ca5 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Mon Nov 02 21:18:34 2015 +0100 |
committer | Richard Levitte <levitte@openssl.org> | Mon Nov 02 21:18:34 2015 +0100 |
tree | 03b5ae50dab9d20f848bbc11cff6104a438eb2e3 | |
parent | 009e9d99a325992096b6112c16b190e47fd1d166 [diff] [blame] |
Fix usage of BIO_ctrl_set_connected Reviewed-by: Rich Salz <rsalz@openssl.org>
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 @@ goto end; } - (void)BIO_ctrl_set_connected(sbio, 1, &peer); + (void)BIO_ctrl_set_connected(sbio, &peer); if (enable_timeouts) { timeout.tv_sec = 0;