RT4639: Typo when -DSSL_DEBUG

Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
Jon Loeliger 2016-07-26 12:48:20 -04:00 committed by Rich Salz
parent ee6ce5cc36
commit 1abd292585
1 changed files with 1 additions and 1 deletions

View File

@ -2621,7 +2621,7 @@ static void print_stuff(BIO *bio, SSL *s, int full)
if ((info.addr = BIO_ADDR_new()) != NULL
&& BIO_sock_info(sock, BIO_SOCK_INFO_ADDRESS, &info)) {
BIO_printf(bio_c_out, "LOCAL PORT is %u\n",
ntohs(BIO_ADDR_rawport(info.adr)));
ntohs(BIO_ADDR_rawport(info.addr)));
}
BIO_ADDR_free(info.addr);
}