]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
lib-dcrypt: Return value from RSA_set0_crt_params
authorAki Tuomi <aki.tuomi@open-xchange.com>
Thu, 29 Aug 2019 09:56:21 +0000 (12:56 +0300)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Mon, 23 Sep 2019 05:47:54 +0000 (08:47 +0300)
src/lib-dcrypt/dcrypt-openssl.c

index 17bebde3899461273d82e6afa6327c3829035e2c..948b3daab04c1d6531a9131c724428041b33b549 100644 (file)
@@ -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