From: Dr. Stephen Henson Date: Fri, 24 Jul 2009 11:24:07 +0000 (+0000) Subject: PR: 1989 X-Git-Tag: OpenSSL_0_9_8m-beta1~165 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=32d4496c1e90f82c3ef0cd131df50d34a631a9d0;p=oweals%2Fopenssl.git PR: 1989 Submitted by: Viktor Szakáts Approved by: steve@openssl.org Too few arguments in definition of BIO_get_cont_int_port macro. --- diff --git a/crypto/bio/bio.h b/crypto/bio/bio.h index 86a07ac272..b576e347a0 100644 --- a/crypto/bio/bio.h +++ b/crypto/bio/bio.h @@ -407,7 +407,7 @@ typedef struct bio_f_buffer_ctx_struct #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_int_ctrl(b,BIO_C_GET_CONNECT,3) +#define BIO_get_conn_int_port(b) BIO_int_ctrl(b,BIO_C_GET_CONNECT,3,0) #define BIO_set_nbio(b,n) BIO_ctrl(b,BIO_C_SET_NBIO,(n),NULL)