From: Aki Tuomi Date: Thu, 29 Aug 2019 09:56:21 +0000 (+0300) Subject: lib-dcrypt: Return value from RSA_set0_crt_params X-Git-Tag: 2.3.9~240 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0eff8581c078c6b6412b122f81e255de591926ce;p=thirdparty%2Fdovecot%2Fcore.git lib-dcrypt: Return value from RSA_set0_crt_params --- diff --git a/src/lib-dcrypt/dcrypt-openssl.c b/src/lib-dcrypt/dcrypt-openssl.c index 17bebde389..948b3daab0 100644 --- a/src/lib-dcrypt/dcrypt-openssl.c +++ b/src/lib-dcrypt/dcrypt-openssl.c @@ -1644,6 +1644,7 @@ static int RSA_set0_crt_params(RSA *r, BIGNUM *dmp1, BIGNUM *dmq1, BIGNUM *iqmp) r->dmp1 = dmp1; r->dmq1 = dmq1; r->iqmp = iqmp; + return 1; } #endif