diff options
author | miod <> | 2014-04-13 15:16:38 +0000 |
---|---|---|
committer | miod <> | 2014-04-13 15:16:38 +0000 |
commit | fea4fc3d16f04ff054803f9276895492961ab5e2 (patch) | |
tree | 5120067244554214f4a55a9b6f4ab44bca0a0438 /src/lib/libcrypto/engine/eng_rdrand.c | |
parent | 293732ea9d538daf81033ab02d62cbe188088510 (diff) | |
download | openbsd-fea4fc3d16f04ff054803f9276895492961ab5e2.tar.gz openbsd-fea4fc3d16f04ff054803f9276895492961ab5e2.tar.bz2 openbsd-fea4fc3d16f04ff054803f9276895492961ab5e2.zip |
Import OpenSSL 1.0.1g
Diffstat (limited to 'src/lib/libcrypto/engine/eng_rdrand.c')
-rw-r--r-- | src/lib/libcrypto/engine/eng_rdrand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/libcrypto/engine/eng_rdrand.c b/src/lib/libcrypto/engine/eng_rdrand.c index a9ba5ae6f9..4e9e91d54b 100644 --- a/src/lib/libcrypto/engine/eng_rdrand.c +++ b/src/lib/libcrypto/engine/eng_rdrand.c | |||
@@ -104,6 +104,7 @@ static int bind_helper(ENGINE *e) | |||
104 | { | 104 | { |
105 | if (!ENGINE_set_id(e, engine_e_rdrand_id) || | 105 | if (!ENGINE_set_id(e, engine_e_rdrand_id) || |
106 | !ENGINE_set_name(e, engine_e_rdrand_name) || | 106 | !ENGINE_set_name(e, engine_e_rdrand_name) || |
107 | !ENGINE_set_flags(e, ENGINE_FLAGS_NO_REGISTER_ALL) || | ||
107 | !ENGINE_set_init_function(e, rdrand_init) || | 108 | !ENGINE_set_init_function(e, rdrand_init) || |
108 | !ENGINE_set_RAND(e, &rdrand_meth) ) | 109 | !ENGINE_set_RAND(e, &rdrand_meth) ) |
109 | return 0; | 110 | return 0; |