aboutsummaryrefslogtreecommitdiff
path: root/ssl/ssl_lib.c
diff options
context:
space:
mode:
authorLutz Jänicke <jaenicke@openssl.org>2001-07-30 11:45:34 +0000
committerLutz Jänicke <jaenicke@openssl.org>2001-07-30 11:45:34 +0000
commit1f0c9ad7e1a206edc95c477e981fb331c0f6460d (patch)
treef2fb4e04f96a96114bd4acbfa8a39b36c8e9b385 /ssl/ssl_lib.c
parent06efc222f9620f6806dd9a59528cf3f9ee9171ee (diff)
downloadopenssl-1f0c9ad7e1a206edc95c477e981fb331c0f6460d.zip
openssl-1f0c9ad7e1a206edc95c477e981fb331c0f6460d.tar.gz
openssl-1f0c9ad7e1a206edc95c477e981fb331c0f6460d.tar.bz2
Fix inconsistent behaviour with respect to verify_callback handling.
Diffstat (limited to 'ssl/ssl_lib.c')
-rw-r--r--ssl/ssl_lib.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ssl/ssl_lib.c b/ssl/ssl_lib.c
index 3451096..f4dfdbf 100644
--- a/ssl/ssl_lib.c
+++ b/ssl/ssl_lib.c
@@ -1361,8 +1361,6 @@ void SSL_CTX_set_verify(SSL_CTX *ctx,int mode,int (*cb)(int, X509_STORE_CTX *))
{
ctx->verify_mode=mode;
ctx->default_verify_callback=cb;
- /* This needs cleaning up EAY EAY EAY */
- X509_STORE_set_verify_cb_func(ctx->cert_store,cb);
}
void SSL_CTX_set_verify_depth(SSL_CTX *ctx,int depth)