summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorjsing <>2014-07-10 09:30:53 +0000
committerjsing <>2014-07-10 09:30:53 +0000
commit797f132681691f5303e7d92a963717a2555f569a (patch)
treef3f68d323dcac35c105bd48d9bf44aad454ce9d5 /src
parent0f54f612e90a5337f4eebc8557eff18b386b0360 (diff)
downloadopenbsd-797f132681691f5303e7d92a963717a2555f569a.tar.gz
openbsd-797f132681691f5303e7d92a963717a2555f569a.tar.bz2
openbsd-797f132681691f5303e7d92a963717a2555f569a.zip
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 'src')
-rw-r--r--src/lib/libssl/src/apps/s_client.c6
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 */