From 2c9be7d09f4566f7fb78d168acd5038dd4384ca5 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Mon, 2 Nov 2015 21:18:34 +0100 Subject: [PATCH] Fix usage of BIO_ctrl_set_connected Reviewed-by: Rich Salz --- 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 9bad1b51cf..fc0174f2c2 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; -- 2.34.1