From: Paul Yang Date: Tue, 15 Aug 2017 03:44:56 +0000 (+0800) Subject: Use new setup_tests in code of rsa_test X-Git-Tag: OpenSSL_1_1_1-pre1~847 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=b158049cbdff7efa9afd93eb55bb7df95c0f385f Use new setup_tests in code of rsa_test Although this piece of code will not be compiled at current stage, but there seems a plan to re-open the 'no-rsa' option in the future so this should be fixed. Reviewed-by: Richard Levitte Reviewed-by: Rich Salz (Merged from https://github.com/openssl/openssl/pull/4161) --- diff --git a/test/rsa_test.c b/test/rsa_test.c index 88464dafea..55339f9053 100644 --- a/test/rsa_test.c +++ b/test/rsa_test.c @@ -22,9 +22,10 @@ #include "testutil.h" #ifdef OPENSSL_NO_RSA -void setup_tests(void) +int setup_tests(void) { /* No tests */ + return 1; } #else # include