diff options
author | Hans Nilsson <[email protected]> | 2019-02-04 12:01:16 +0100 |
---|---|---|
committer | Hans Nilsson <[email protected]> | 2019-02-04 12:01:16 +0100 |
commit | c66d0d2396bb1759b49f4fc383a6df0f6b918699 (patch) | |
tree | 90258923508ddc15c384fbf1d26362c0ef68d8f5 /lib/crypto/c_src/otp_test_engine.c | |
parent | 4bdbb313f621d54038a9c17c6d9895650d539eab (diff) | |
parent | 0c441ec09fa648af869e6080f671dee802d62e3d (diff) | |
download | otp-c66d0d2396bb1759b49f4fc383a6df0f6b918699.tar.gz otp-c66d0d2396bb1759b49f4fc383a6df0f6b918699.tar.bz2 otp-c66d0d2396bb1759b49f4fc383a6df0f6b918699.zip |
Merge branch 'hans/crypto/fixes/OTP-14732'
* hans/crypto/fixes/OTP-14732:
otp_test_engine.c fixes
crypto: Fix compilation < 1.0.0
Diffstat (limited to 'lib/crypto/c_src/otp_test_engine.c')
-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) |