From b158049cbdff7efa9afd93eb55bb7df95c0f385f Mon Sep 17 00:00:00 2001 From: Paul Yang Date: Tue, 15 Aug 2017 11:44:56 +0800 Subject: [PATCH] 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) --- test/rsa_test.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.25.1