From 32d4496c1e90f82c3ef0cd131df50d34a631a9d0 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 24 Jul 2009 11:24:07 +0000 Subject: [PATCH] =?utf8?q?PR:=201989=20Submitted=20by:=20Viktor=20Szak?= =?utf8?q?=C3=83=C2=A1ts=20=20Approved=20by:=20steve?= =?utf8?q?@openssl.org?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Too few arguments in definition of BIO_get_cont_int_port macro. --- 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 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) -- 2.25.1