summaryrefslogtreecommitdiffstats
path: root/apps/verify.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-18 14:42:27 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-18 14:42:27 +0000
commitc679fb298ea8a94764a594d07b97823c4615ea4e (patch)
treef3b6d23ff241108c6690de30a6495b1d1014937e /apps/verify.c
parent17c7cad5458758a2b1a574718bf9e1f58a00a0c2 (diff)
Add new function X509_STORE_set_verify_cb and use it in apps
Diffstat (limited to 'apps/verify.c')
-rw-r--r--apps/verify.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/verify.c b/apps/verify.c
index 838ac46827..96fcfb429d 100644
--- a/apps/verify.c
+++ b/apps/verify.c
@@ -93,7 +93,7 @@ int MAIN(int argc, char **argv)
cert_ctx=X509_STORE_new();
if (cert_ctx == NULL) goto end;
- X509_STORE_set_verify_cb_func(cert_ctx,cb);
+ X509_STORE_set_verify_cb(cert_ctx,cb);
ERR_load_crypto_strings();