make get_cipher_handle static
authorJitendraLulla <lullajd@yahoo.com>
Wed, 15 Nov 2017 01:13:48 +0000 (06:43 +0530)
committerMatt Caswell <matt@openssl.org>
Fri, 8 Dec 2017 10:39:52 +0000 (10:39 +0000)
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

index 3e49a27775ea16aa6b16953aeb54d503c34256af..79a81293a869026ebe4b77f055b16a6e8b8c94b7 100644 (file)
@@ -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,