From: Jon Loeliger Date: Tue, 26 Jul 2016 16:48:20 +0000 (-0400) Subject: RT4639: Typo when -DSSL_DEBUG X-Git-Tag: OpenSSL_1_1_0-pre6~72 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1abd2925855118843ac69fc6861aa72c5513572c;p=oweals%2Fopenssl.git RT4639: Typo when -DSSL_DEBUG Reviewed-by: Richard Levitte --- 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); }