From 7e8a5e30902b3e3f10aeaae8dcde283eb7224abc Mon Sep 17 00:00:00 2001
From: JitendraLulla <lullajd@yahoo.com>
Date: Wed, 15 Nov 2017 06:43:48 +0530
Subject: [PATCH] make get_cipher_handle 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)
---
 engines/e_afalg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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,
-- 
GitLab