diff options
author | Hans Nilsson <[email protected]> | 2019-01-17 13:49:28 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-02-04 11:55:31 +0100 |
commit | 0c441ec09fa648af869e6080f671dee802d62e3d (patch) | |
tree | 9de069d1bf2726f1a688e6424541bd9fd6dccc09 /lib/crypto/c_src | |
parent | 55d6161c8025a07e1775b1ac1f2fee56fe38770d (diff) | |
download | otp-0c441ec09fa648af869e6080f671dee802d62e3d.tar.gz otp-0c441ec09fa648af869e6080f671dee802d62e3d.tar.bz2 otp-0c441ec09fa648af869e6080f671dee802d62e3d.zip |
otp_test_engine.c fixes
Diffstat (limited to 'lib/crypto/c_src')
-rw-r--r-- | lib/crypto/c_src/otp_test_engine.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/crypto/c_src/otp_test_engine.c b/lib/crypto/c_src/otp_test_engine.c index fdc60f3bbc..fd26b7cb5d 100644 --- a/lib/crypto/c_src/otp_test_engine.c +++ b/lib/crypto/c_src/otp_test_engine.c @@ -104,9 +104,11 @@ static int test_init(ENGINE *e) { return 111; - err: +#if defined(FAKE_RSA_IMPL) +err: fprintf(stderr, "Setup RSA_METHOD failed\r\n"); return 0; +#endif } static void add_test_data(unsigned char *md, unsigned int len) |