diff options
author | Matt Caswell <matt@openssl.org> | 2016-11-23 23:55:13 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2016-11-24 10:28:16 +0100 |
commit | a1fd1fb241069cc987d0d2cf13880bd16cada3c9 (patch) | |
tree | b71e578a2539ffb0e2146b31b83f4719a39008cd /engines | |
parent | Fix missing NULL checks in key_share processing (diff) | |
download | openssl-a1fd1fb241069cc987d0d2cf13880bd16cada3c9.tar.xz openssl-a1fd1fb241069cc987d0d2cf13880bd16cada3c9.zip |
Fix a missing function prototype in AFALG engine
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'engines')
-rw-r--r-- | engines/afalg/e_afalg.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/afalg/e_afalg.c b/engines/afalg/e_afalg.c index 658de4250b..8e019d4903 100644 --- a/engines/afalg/e_afalg.c +++ b/engines/afalg/e_afalg.c @@ -28,6 +28,7 @@ !defined(AF_ALG) # warning "AFALG ENGINE requires Kernel Headers >= 4.1.0" # warning "Skipping Compilation of AFALG engine" +void engine_load_afalg_int(void); void engine_load_afalg_int(void) { } |