Browse Source

openssl: Mark openssl_digest_vector() static

Jouni Malinen 15 years ago
parent
commit
d8130bdf13
1 changed files with 3 additions and 2 deletions
  1. 3 2
      src/crypto/crypto_openssl.c

+ 3 - 2
src/crypto/crypto_openssl.c

@@ -34,8 +34,9 @@
 #endif /* openssl < 0.9.7 */
 
 
-int openssl_digest_vector(const EVP_MD *type, int non_fips, size_t num_elem,
-			  const u8 *addr[], const size_t *len, u8 *mac)
+static int openssl_digest_vector(const EVP_MD *type, int non_fips,
+				 size_t num_elem, const u8 *addr[],
+				 const size_t *len, u8 *mac)
 {
 	EVP_MD_CTX ctx;
 	size_t i;