diff options
Diffstat (limited to '')
| -rw-r--r-- | src/lib/libssl/ssl_txt.c | 19 | 
1 files changed, 0 insertions, 19 deletions
| diff --git a/src/lib/libssl/ssl_txt.c b/src/lib/libssl/ssl_txt.c index c6bfd68de6..01dd846596 100644 --- a/src/lib/libssl/ssl_txt.c +++ b/src/lib/libssl/ssl_txt.c | |||
| @@ -161,19 +161,6 @@ SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) | |||
| 161 | if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0) | 161 | if (BIO_printf(bp, "%02X", x->master_key[i]) <= 0) | 
| 162 | goto err; | 162 | goto err; | 
| 163 | } | 163 | } | 
| 164 | #ifndef OPENSSL_NO_KRB5 | ||
| 165 | if (BIO_puts(bp, "\n Krb5 Principal: ") <= 0) | ||
| 166 | goto err; | ||
| 167 | if (x->krb5_client_princ_len == 0) { | ||
| 168 | if (BIO_puts(bp, "None") <= 0) | ||
| 169 | goto err; | ||
| 170 | } else { | ||
| 171 | for (i = 0; i < x->krb5_client_princ_len; i++) { | ||
| 172 | if (BIO_printf(bp, "%02X", x->krb5_client_princ[i]) <= 0) | ||
| 173 | goto err; | ||
| 174 | } | ||
| 175 | } | ||
| 176 | #endif /* OPENSSL_NO_KRB5 */ | ||
| 177 | #ifndef OPENSSL_NO_PSK | 164 | #ifndef OPENSSL_NO_PSK | 
| 178 | if (BIO_puts(bp, "\n PSK identity: ") <= 0) | 165 | if (BIO_puts(bp, "\n PSK identity: ") <= 0) | 
| 179 | goto err; | 166 | goto err; | 
| @@ -184,12 +171,6 @@ SSL_SESSION_print(BIO *bp, const SSL_SESSION *x) | |||
| 184 | if (BIO_printf(bp, "%s", x->psk_identity_hint ? x->psk_identity_hint : "None") <= 0) | 171 | if (BIO_printf(bp, "%s", x->psk_identity_hint ? x->psk_identity_hint : "None") <= 0) | 
| 185 | goto err; | 172 | goto err; | 
| 186 | #endif | 173 | #endif | 
| 187 | #ifndef OPENSSL_NO_SRP | ||
| 188 | if (BIO_puts(bp, "\n SRP username: ") <= 0) | ||
| 189 | goto err; | ||
| 190 | if (BIO_printf(bp, "%s", x->srp_username ? x->srp_username : "None") <= 0) | ||
| 191 | goto err; | ||
| 192 | #endif | ||
| 193 | #ifndef OPENSSL_NO_TLSEXT | 174 | #ifndef OPENSSL_NO_TLSEXT | 
| 194 | if (x->tlsext_tick_lifetime_hint) { | 175 | if (x->tlsext_tick_lifetime_hint) { | 
| 195 | if (BIO_printf(bp, | 176 | if (BIO_printf(bp, | 
