[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Richard Levitte levitte at openssl.org
Thu Jan 28 17:21:14 UTC 2016


The branch OpenSSL_1_0_1-stable has been updated
       via  5d5de781a5e091ecc60b9171ce3fb8daf8c31156 (commit)
      from  69ff2444908e73d4b973f42daf989b46c774772e (commit)


- Log -----------------------------------------------------------------
commit 5d5de781a5e091ecc60b9171ce3fb8daf8c31156
Author: Richard Levitte <levitte at openssl.org>
Date:   Thu Jan 28 17:55:11 2016 +0100

    Correct number of arguments in BIO_get_conn_int_port macro
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (cherry picked from commit 41a28cb2944a4e1c9d13889757a3bd9f72abeca1)

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

Summary of changes:
 crypto/bio/bio.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h
index c5c95de..05f629a 100644
--- a/crypto/bio/bio.h
+++ b/crypto/bio/bio.h
@@ -478,7 +478,7 @@ struct bio_dgram_sctp_prinfo {
 # define BIO_get_conn_hostname(b)  BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,0)
 # define BIO_get_conn_port(b)      BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,1)
 # define BIO_get_conn_ip(b)               BIO_ptr_ctrl(b,BIO_C_GET_CONNECT,2)
-# define BIO_get_conn_int_port(b) BIO_ctrl(b,BIO_C_GET_CONNECT,3,0,NULL)
+# define BIO_get_conn_int_port(b) BIO_ctrl(b,BIO_C_GET_CONNECT,3,NULL)
 
 # define BIO_set_nbio(b,n)       BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL)
 


More information about the openssl-commits mailing list