aboutsummaryrefslogtreecommitdiff
path: root/crypto/openssl/apps/ocsp.c
diff options
context:
space:
mode:
authorSimon L. B. Nielsen <simon@FreeBSD.org>2007-03-15 20:03:30 +0000
committerSimon L. B. Nielsen <simon@FreeBSD.org>2007-03-15 20:03:30 +0000
commit03b688114f278f603d0b73118f8ba646bb8d5fe8 (patch)
treee7e76085d46ef861077be893200a8581676b8160 /crypto/openssl/apps/ocsp.c
parent4beb77e6739e921e5369a93e135e71d7044990fb (diff)
parent5471f83ea72e251ea1f0d04428878a74347efa0f (diff)
downloadsrc-03b688114f278f603d0b73118f8ba646bb8d5fe8.tar.gz
src-03b688114f278f603d0b73118f8ba646bb8d5fe8.zip
This commit was generated by cvs2svn to compensate for changes in r167612,
which included commits to RCS files with non-trunk default branches.
Notes
Notes: svn path=/head/; revision=167613
Diffstat (limited to 'crypto/openssl/apps/ocsp.c')
-rw-r--r--crypto/openssl/apps/ocsp.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/crypto/openssl/apps/ocsp.c b/crypto/openssl/apps/ocsp.c
index 52af592a4a61..3ee6dfb5ed33 100644
--- a/crypto/openssl/apps/ocsp.c
+++ b/crypto/openssl/apps/ocsp.c
@@ -139,6 +139,7 @@ int MAIN(int argc, char **argv)
if (!load_config(bio_err, NULL))
goto end;
SSL_load_error_strings();
+ OpenSSL_add_ssl_algorithms();
args = argv + 1;
reqnames = sk_new_null();
ids = sk_OCSP_CERTID_new_null();
@@ -726,6 +727,11 @@ int MAIN(int argc, char **argv)
BIO_printf(bio_err, "SSL is disabled\n");
goto end;
#endif
+ if (ctx == NULL)
+ {
+ BIO_printf(bio_err, "Error creating SSL context.\n");
+ goto end;
+ }
SSL_CTX_set_mode(ctx, SSL_MODE_AUTO_RETRY);
sbio = BIO_new_ssl(ctx, 1);
cbio = BIO_push(sbio, cbio);