summaryrefslogtreecommitdiffstats
path: root/apps/smime.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/smime.c
parent17c7cad5458758a2b1a574718bf9e1f58a00a0c2 (diff)
Add new function X509_STORE_set_verify_cb and use it in apps
Diffstat (limited to 'apps/smime.c')
-rw-r--r--apps/smime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/smime.c b/apps/smime.c
index 67df0667b6..c583f8a0e1 100644
--- a/apps/smime.c
+++ b/apps/smime.c
@@ -671,7 +671,7 @@ int MAIN(int argc, char **argv)
{
if (!(store = setup_verify(bio_err, CAfile, CApath)))
goto end;
- X509_STORE_set_verify_cb_func(store, smime_cb);
+ X509_STORE_set_verify_cb(store, smime_cb);
if (vpm)
X509_STORE_set1_param(store, vpm);
}