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
commitd911e94b7f58a5d8e2d21f13e20bbe04b9707e86 (patch)
treef3f68d323dcac35c105bd48d9bf44aad454ce9d5 /src
parente44978c178aed8163999a272aef221157cbaf6c6 (diff)
downloadopenbsd-d911e94b7f58a5d8e2d21f13e20bbe04b9707e86.tar.gz
openbsd-d911e94b7f58a5d8e2d21f13e20bbe04b9707e86.tar.bz2
openbsd-d911e94b7f58a5d8e2d21f13e20bbe04b9707e86.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 */