make depend
[openssl.git] / crypto / engine / eng_pkey.c
index 9b5169c46e1d9d309eaa0037a644d52df4aac017..1dfa2e366451e9436c30f052d2e36faf2522c628 100644 (file)
@@ -167,9 +167,8 @@ EVP_PKEY *ENGINE_load_public_key(ENGINE *e, const char *key_id,
 
 int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s,
        STACK_OF(X509_NAME) *ca_dn, X509 **pcert, EVP_PKEY **ppkey,
-       UI_METHOD *ui_method, void *callback_data)
+       STACK_OF(X509) **pother, UI_METHOD *ui_method, void *callback_data)
        {
-       int ret;
 
        if(e == NULL)
                {
@@ -192,6 +191,6 @@ int ENGINE_load_ssl_client_cert(ENGINE *e, SSL *s,
                        ENGINE_R_NO_LOAD_FUNCTION);
                return 0;
                }
-       return e->load_ssl_client_cert(e, s, ca_dn, pcert, ppkey,
+       return e->load_ssl_client_cert(e, s, ca_dn, pcert, ppkey, pother,
                                        ui_method, callback_data);
        }