aboutsummaryrefslogtreecommitdiff
path: root/openbsd-compat/libressl-api-compat.c
diff options
context:
space:
mode:
Diffstat (limited to 'openbsd-compat/libressl-api-compat.c')
-rw-r--r--openbsd-compat/libressl-api-compat.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/openbsd-compat/libressl-api-compat.c b/openbsd-compat/libressl-api-compat.c
index fdadd4e59..4d30322f9 100644
--- a/openbsd-compat/libressl-api-compat.c
+++ b/openbsd-compat/libressl-api-compat.c
@@ -284,7 +284,7 @@ RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp)
if ((r->dmp1 == NULL && dmp1 == NULL) ||
(r->dmq1 == NULL && dmq1 == NULL) ||
(r->iqmp == NULL && iqmp == NULL))
- return 0;
+ return 0;
if (dmp1 != NULL) {
BN_free(r->dmp1);