summaryrefslogtreecommitdiffstats
path: root/lib/libssl/ssl_txt.c
diff options
context:
space:
mode:
authortedu <tedu@openbsd.org>2014-04-16 17:59:16 +0000
committertedu <tedu@openbsd.org>2014-04-16 17:59:16 +0000
commitb72ae1119da78b79b9d8046c9e590a6709397cf5 (patch)
tree86e8db8dcb03903cc54a8629f71418a3caf7ffca /lib/libssl/ssl_txt.c
parentwhack the ifdef pinata: (diff)
downloadwireguard-openbsd-b72ae1119da78b79b9d8046c9e590a6709397cf5.tar.xz
wireguard-openbsd-b72ae1119da78b79b9d8046c9e590a6709397cf5.zip
disentangle SRP code from TLS
Diffstat (limited to 'lib/libssl/ssl_txt.c')
-rw-r--r--lib/libssl/ssl_txt.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/libssl/ssl_txt.c b/lib/libssl/ssl_txt.c
index 91664ffe432..d3f304b73d9 100644
--- a/lib/libssl/ssl_txt.c
+++ b/lib/libssl/ssl_txt.c
@@ -193,12 +193,6 @@ SSL_SESSION_print(BIO *bp, const SSL_SESSION *x)
if (BIO_printf(bp, "%s", x->psk_identity_hint ? x->psk_identity_hint : "None")
<= 0) goto err;
#endif
-#ifndef OPENSSL_NO_SRP
- if (BIO_puts(bp, "\n SRP username: ")
- <= 0) goto err;
- if (BIO_printf(bp, "%s", x->srp_username ? x->srp_username : "None")
- <= 0) goto err;
-#endif
#ifndef OPENSSL_NO_TLSEXT
if (x->tlsext_tick_lifetime_hint) {
if (BIO_printf(bp,