summaryrefslogtreecommitdiffstats
path: root/apps/verify.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2009-10-18 14:40:33 +0000
committerDr. Stephen Henson <steve@openssl.org>2009-10-18 14:40:33 +0000
commit6aa1770c6d9c305caf0b0798e55c94797be271ec (patch)
tree320cf5e5eb44bf1ce405e0b7c9d16863a5f06759 /apps/verify.c
parent122276a7b464ab8f8414f31ecb86a74f6467c49d (diff)
Use new X509_STORE_set_verify_cb function instead of old macro.
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();