summaryrefslogtreecommitdiffstats
path: root/engines/e_capi.c
diff options
context:
space:
mode:
Diffstat (limited to 'engines/e_capi.c')
-rw-r--r--engines/e_capi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/e_capi.c b/engines/e_capi.c
index 4cec2f411c..f44acc91f3 100644
--- a/engines/e_capi.c
+++ b/engines/e_capi.c
@@ -478,12 +478,12 @@ static int capi_init(ENGINE *e)
ossl_dsa_meth = DSA_OpenSSL();
if ( !DSA_meth_set_sign(capi_dsa_method, capi_dsa_do_sign)
|| !DSA_meth_set_verify(capi_dsa_method,
- DSA_meth_get_verify(ossl_dsa_meth))
+ DSA_meth_get_verify(ossl_dsa_meth))
|| !DSA_meth_set_finish(capi_dsa_method, capi_dsa_free)
|| !DSA_meth_set_mod_exp(capi_dsa_method,
- DSA_meth_get_mod_exp(ossl_dsa_meth))
+ DSA_meth_get_mod_exp(ossl_dsa_meth))
|| !DSA_meth_set_bn_mod_exp(capi_dsa_method,
- DSA_meth_get_bn_mod_exp(ossl_dsa_meth))) {
+ DSA_meth_get_bn_mod_exp(ossl_dsa_meth))) {
goto memerr;
}
}