Skip to content

Commit 4968b69

Browse files
committed
openssl: ntlm_crypt_init_functions is static
1 parent 8946f74 commit 4968b69

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/crypt_openssl.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ static inline void HMAC_CTX_cleanup(HMAC_CTX *ctx)
5656

5757
#ifdef CRYPT_OPENSSL_DYNAMIC
5858

59-
bool ntlm_crypt_init_functions(ntlm_client *ntlm)
59+
static bool ntlm_crypt_init_functions(ntlm_client *ntlm)
6060
{
6161
void *handle;
6262

@@ -121,7 +121,7 @@ bool ntlm_crypt_init_functions(ntlm_client *ntlm)
121121

122122
#else /* CRYPT_OPENSSL_DYNAMIC */
123123

124-
bool ntlm_crypt_init_functions(ntlm_client *ntlm)
124+
static bool ntlm_crypt_init_functions(ntlm_client *ntlm)
125125
{
126126
ntlm->crypt_ctx.des_set_key_fn = DES_set_key;
127127
ntlm->crypt_ctx.des_ecb_encrypt_fn = DES_ecb_encrypt;

0 commit comments

Comments
 (0)