From d911e94b7f58a5d8e2d21f13e20bbe04b9707e86 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Thu, 10 Jul 2014 09:30:53 +0000 Subject: Tame the tedu... we still want to know that Compression and Expansion are NONE, even if this is due to the fact that we do not support compression. --- src/lib/libssl/src/apps/s_client.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src') 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 @@ -/* $OpenBSD: s_client.c,v 1.64 2014/07/10 09:15:51 tedu Exp $ */ +/* $OpenBSD: s_client.c,v 1.65 2014/07/10 09:30:53 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1509,6 +1509,10 @@ print_stuff(BIO * bio, SSL * s, int full) BIO_printf(bio, "Secure Renegotiation IS%s supported\n", SSL_get_secure_renegotiation_support(s) ? "" : " NOT"); + /* Compression is not supported and will always be none. */ + BIO_printf(bio, "Compression: NONE\n"); + BIO_printf(bio, "Expansion: NONE\n"); + #ifdef SSL_DEBUG { /* Print out local port of connection: useful for debugging */ -- cgit v1.2.3-55-g6feb