From: JitendraLulla Date: Wed, 15 Nov 2017 01:13:48 +0000 (+0530) Subject: make get_cipher_handle static X-Git-Tag: OpenSSL_1_1_1-pre1~351 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=7e8a5e30902b3e3f10aeaae8dcde283eb7224abc;p=oweals%2Fopenssl.git make get_cipher_handle static Reviewed-by: Paul Dale Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/4717) --- diff --git a/engines/e_afalg.c b/engines/e_afalg.c index 3e49a27775..79a81293a8 100644 --- a/engines/e_afalg.c +++ b/engines/e_afalg.c @@ -80,7 +80,7 @@ static int afalg_destroy(ENGINE *e); static int afalg_init(ENGINE *e); static int afalg_finish(ENGINE *e); const EVP_CIPHER *afalg_aes_cbc(int nid); -cbc_handles *get_cipher_handle(int nid); +static cbc_handles *get_cipher_handle(int nid); static int afalg_ciphers(ENGINE *e, const EVP_CIPHER **cipher, const int **nids, int nid); static int afalg_cipher_init(EVP_CIPHER_CTX *ctx, const unsigned char *key,