summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorJon Loeliger <jdl@jdl.com>2016-07-26 12:48:20 -0400
committerRich Salz <rsalz@openssl.org>2016-07-26 12:48:51 -0400
commit1abd2925855118843ac69fc6861aa72c5513572c (patch)
tree5de5732884512356197e0d60f1dbd9361eb22652 /apps
parentee6ce5cc368574c0b0b470e61ee2f82a0efadbb7 (diff)
RT4639: Typo when -DSSL_DEBUG
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'apps')
-rw-r--r--apps/s_client.c2
1 files changed, 1 insertions, 1 deletions
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);
}