diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-10 09:30:54 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2014-07-10 09:30:54 +0000 |
commit | b940550b4030589eaf347e9efa434c0830c0e9df (patch) | |
tree | 37cd8a20fe821c69ed756deec25485cdee526eda /lib | |
parent | c6c51e2352c52decf0941c11137c7d2dfccd57ec (diff) |
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.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libssl/src/apps/s_client.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libssl/src/apps/s_client.c b/lib/libssl/src/apps/s_client.c index 89e14693f1a..2b313c84ff6 100644 --- a/lib/libssl/src/apps/s_client.c +++ b/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 */ |