diff options
author | Richard Levitte <levitte@openssl.org> | 2016-01-28 17:55:11 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2016-01-28 18:20:55 +0100 |
commit | da7947e8c6915d86616425ecbc4906f079ef122f (patch) | |
tree | 821c9fcfe6b82124efd83e746499e288fed5cc25 /crypto | |
parent | 22d192f106fe0d6e43a41a65278e76f612e2eca3 (diff) |
Correct number of arguments in BIO_get_conn_int_port macro
Reviewed-by: Rich Salz <rsalz@openssl.org>
(cherry picked from commit 41a28cb2944a4e1c9d13889757a3bd9f72abeca1)
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/bio/bio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h index 6e2293bc66..498cc32a8c 100644 --- a/crypto/bio/bio.h +++ b/crypto/bio/bio.h @@ -479,7 +479,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) |