aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-01-28 17:55:11 +0100
committerRichard Levitte <levitte@openssl.org>2016-01-28 18:19:55 +0100
commit41a28cb2944a4e1c9d13889757a3bd9f72abeca1 (patch)
tree1b6bcfd6b7319285b3dd78a756772dec1562be1d /include
parent502bed22a940598bad27555d2b5c5c27a1f2edf1 (diff)
downloadopenssl-41a28cb2944a4e1c9d13889757a3bd9f72abeca1.tar.gz
Correct number of arguments in BIO_get_conn_int_port macro
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'include')
-rw-r--r--include/openssl/bio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/openssl/bio.h b/include/openssl/bio.h
index ea1d3b752e..beacf19183 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)