diff options
author | JitendraLulla <lullajd@yahoo.com> | 2017-11-15 11:44:36 +0100 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2017-12-08 11:39:52 +0100 |
commit | f1138840cbdcdacbb737d7802eb774f6cbc5762b (patch) | |
tree | 6e17437bf7cf7f620dfca0ead12ffe7cc70348f1 /engines | |
parent | make get_cipher_handle static (diff) | |
download | openssl-f1138840cbdcdacbb737d7802eb774f6cbc5762b.tar.xz openssl-f1138840cbdcdacbb737d7802eb774f6cbc5762b.zip |
putting the missing static
Reviewed-by: Paul Dale <paul.dale@oracle.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/4717)
Diffstat (limited to 'engines')
-rw-r--r-- | engines/e_afalg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/e_afalg.c b/engines/e_afalg.c index 79a81293a8..49b01739fa 100644 --- a/engines/e_afalg.c +++ b/engines/e_afalg.c @@ -644,7 +644,7 @@ static int afalg_cipher_cleanup(EVP_CIPHER_CTX *ctx) return 1; } -cbc_handles *get_cipher_handle(int nid) +static cbc_handles *get_cipher_handle(int nid) { switch (nid) { case NID_aes_128_cbc: |