The branch master has been updated
       via  2c9be7d09f4566f7fb78d168acd5038dd4384ca5 (commit)
      from  009e9d99a325992096b6112c16b190e47fd1d166 (commit)


- Log -----------------------------------------------------------------
commit 2c9be7d09f4566f7fb78d168acd5038dd4384ca5
Author: Richard Levitte <[email protected]>
Date:   Mon Nov 2 21:18:34 2015 +0100

    Fix usage of BIO_ctrl_set_connected
    
    Reviewed-by: Rich Salz <[email protected]>

-----------------------------------------------------------------------

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;
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits

Reply via email to