From: Richard Levitte Date: Thu, 28 Jan 2016 16:55:11 +0000 (+0100) Subject: Correct number of arguments in BIO_get_conn_int_port macro X-Git-Tag: OpenSSL_1_1_0-pre3~389 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=41a28cb2944a4e1c9d13889757a3bd9f72abeca1;p=thirdparty%2Fopenssl.git Correct number of arguments in BIO_get_conn_int_port macro Reviewed-by: Rich Salz --- diff --git a/include/openssl/bio.h b/include/openssl/bio.h index ea1d3b752ec..beacf191838 100644 --- a/include/openssl/bio.h +++ b/include/openssl/bio.h @@ -465,7 +465,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)