diff options
author | beck <> | 2000-03-19 11:13:58 +0000 |
---|---|---|
committer | beck <> | 2000-03-19 11:13:58 +0000 |
commit | 796d609550df3a33fc11468741c5d2f6d3df4c11 (patch) | |
tree | 6c6d539061caa20372dad0ac4ddb1dfae2fbe7fe /src/lib/libssl/ssl_txt.c | |
parent | 5be3114c1fd7e0dfea1e38d3abb4cbba75244419 (diff) | |
download | openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.gz openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.tar.bz2 openbsd-796d609550df3a33fc11468741c5d2f6d3df4c11.zip |
OpenSSL 0.9.5 merge
*warning* this bumps shared lib minors for libssl and libcrypto from 2.1 to 2.2
if you are using the ssl26 packages for ssh and other things to work you will
need to get new ones (see ~beck/libsslsnap/<arch>) on cvs or ~beck/src-patent.tar.gz on cvs
Diffstat (limited to 'src/lib/libssl/ssl_txt.c')
-rw-r--r-- | src/lib/libssl/ssl_txt.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/lib/libssl/ssl_txt.c b/src/lib/libssl/ssl_txt.c index ca67a98d89..7e27857bcf 100644 --- a/src/lib/libssl/ssl_txt.c +++ b/src/lib/libssl/ssl_txt.c | |||
@@ -112,7 +112,7 @@ int SSL_SESSION_print(BIO *bp, SSL_SESSION *x) | |||
112 | sprintf(str,"%02X",x->session_id[i]); | 112 | sprintf(str,"%02X",x->session_id[i]); |
113 | if (BIO_puts(bp,str) <= 0) goto err; | 113 | if (BIO_puts(bp,str) <= 0) goto err; |
114 | } | 114 | } |
115 | if (BIO_puts(bp,"\nSession-ID-ctx: ") <= 0) goto err; | 115 | if (BIO_puts(bp,"\n Session-ID-ctx: ") <= 0) goto err; |
116 | for (i=0; i<x->sid_ctx_length; i++) | 116 | for (i=0; i<x->sid_ctx_length; i++) |
117 | { | 117 | { |
118 | sprintf(str,"%02X",x->sid_ctx[i]); | 118 | sprintf(str,"%02X",x->sid_ctx[i]); |
@@ -163,6 +163,11 @@ int SSL_SESSION_print(BIO *bp, SSL_SESSION *x) | |||
163 | if (BIO_puts(bp,str) <= 0) goto err; | 163 | if (BIO_puts(bp,str) <= 0) goto err; |
164 | } | 164 | } |
165 | if (BIO_puts(bp,"\n") <= 0) goto err; | 165 | if (BIO_puts(bp,"\n") <= 0) goto err; |
166 | |||
167 | if (BIO_puts(bp, " Verify return code ") <= 0) goto err; | ||
168 | sprintf(str, "%ld (%s)\n", x->verify_result, | ||
169 | X509_verify_cert_error_string(x->verify_result)); | ||
170 | if (BIO_puts(bp,str) <= 0) goto err; | ||
166 | 171 | ||
167 | return(1); | 172 | return(1); |
168 | err: | 173 | err: |