summaryrefslogtreecommitdiffstats
path: root/ssl/ssl_cert.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_cert.c
parent06efc222f9620f6806dd9a59528cf3f9ee9171ee (diff)
Fix inconsistent behaviour with respect to verify_callback handling.
Diffstat (limited to 'ssl/ssl_cert.c')
-rw-r--r--ssl/ssl_cert.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ssl/ssl_cert.c b/ssl/ssl_cert.c
index 605e97e966..8a53b9fa4b 100644
--- a/ssl/ssl_cert.c
+++ b/ssl/ssl_cert.c
@@ -471,6 +471,8 @@ int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk)
X509_STORE_CTX_purpose_inherit(&ctx, i, s->purpose, s->trust);
+ X509_STORE_CTX_set_verify_cb(&ctx, s->verify_callback);
+
if (s->ctx->app_verify_callback != NULL)
i=s->ctx->app_verify_callback(&ctx); /* should pass app_verify_arg */
else