On 08/09/2013 01:18 PM, Peter Sylvester wrote:
On 08/09/2013 11:17 AM, Florian Weimer wrote:
Qt installs a verification callback like this

|    // Register a custom callback to get all verification errors.
|    X509_STORE_set_verify_cb_func(ctx->cert_store, q_X509Callback);
It is not recommended to access to members in the way above, but rather:

     X509_STORE_set_verify_cb_func(SSL_CTX_get_store(ctx), q_X509Callback);

I think you mean SSL_CTX_get_cert_store, and this is unrelated to my question. :-)

--
Florian Weimer / Red Hat Product Security Team
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to