diff options
-rw-r--r-- | src/lib/libssl/src/apps/s_client.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/src/apps/s_client.c b/src/lib/libssl/src/apps/s_client.c index 89e14693f1..2b313c84ff 100644 --- a/src/lib/libssl/src/apps/s_client.c +++ b/src/lib/libssl/src/apps/s_client.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: s_client.c,v 1.64 2014/07/10 09:15:51 tedu Exp $ */ | 1 | /* $OpenBSD: s_client.c,v 1.65 2014/07/10 09:30:53 jsing Exp $ */ |
2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) | 2 | /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) |
3 | * All rights reserved. | 3 | * All rights reserved. |
4 | * | 4 | * |
@@ -1509,6 +1509,10 @@ print_stuff(BIO * bio, SSL * s, int full) | |||
1509 | BIO_printf(bio, "Secure Renegotiation IS%s supported\n", | 1509 | BIO_printf(bio, "Secure Renegotiation IS%s supported\n", |
1510 | SSL_get_secure_renegotiation_support(s) ? "" : " NOT"); | 1510 | SSL_get_secure_renegotiation_support(s) ? "" : " NOT"); |
1511 | 1511 | ||
1512 | /* Compression is not supported and will always be none. */ | ||
1513 | BIO_printf(bio, "Compression: NONE\n"); | ||
1514 | BIO_printf(bio, "Expansion: NONE\n"); | ||
1515 | |||
1512 | #ifdef SSL_DEBUG | 1516 | #ifdef SSL_DEBUG |
1513 | { | 1517 | { |
1514 | /* Print out local port of connection: useful for debugging */ | 1518 | /* Print out local port of connection: useful for debugging */ |