From 1abd2925855118843ac69fc6861aa72c5513572c Mon Sep 17 00:00:00 2001 From: Jon Loeliger Date: Tue, 26 Jul 2016 12:48:20 -0400 Subject: [PATCH] RT4639: Typo when -DSSL_DEBUG Reviewed-by: Richard Levitte --- apps/s_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/s_client.c b/apps/s_client.c index bc89c984ac..0488a27d60 100644 --- a/apps/s_client.c +++ b/apps/s_client.c @@ -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); } -- 2.34.1