From 6aa1770c6d9c305caf0b0798e55c94797be271ec Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Sun, 18 Oct 2009 14:40:33 +0000 Subject: Use new X509_STORE_set_verify_cb function instead of old macro. --- apps/ts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'apps/ts.c') diff --git a/apps/ts.c b/apps/ts.c index bedb602fd5..5fa9f7fda0 100644 --- a/apps/ts.c +++ b/apps/ts.c @@ -1083,7 +1083,7 @@ static X509_STORE *create_cert_store(char *ca_path, char *ca_file) cert_ctx = X509_STORE_new(); /* Setting the callback for certificate chain verification. */ - X509_STORE_set_verify_cb_func(cert_ctx, verify_cb); + X509_STORE_set_verify_cb(cert_ctx, verify_cb); /* Adding a trusted certificate directory source. */ if (ca_path) -- cgit v1.2.3