Skip to content

Commit

Permalink
openssl: ntlm_crypt_init_functions is static
Browse files Browse the repository at this point in the history
  • Loading branch information
ethomson committed Aug 24, 2021
1 parent 8946f74 commit 4968b69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/crypt_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ static inline void HMAC_CTX_cleanup(HMAC_CTX *ctx)

#ifdef CRYPT_OPENSSL_DYNAMIC

bool ntlm_crypt_init_functions(ntlm_client *ntlm)
static bool ntlm_crypt_init_functions(ntlm_client *ntlm)
{
void *handle;

Expand Down Expand Up @@ -121,7 +121,7 @@ bool ntlm_crypt_init_functions(ntlm_client *ntlm)

#else /* CRYPT_OPENSSL_DYNAMIC */

bool ntlm_crypt_init_functions(ntlm_client *ntlm)
static bool ntlm_crypt_init_functions(ntlm_client *ntlm)
{
ntlm->crypt_ctx.des_set_key_fn = DES_set_key;
ntlm->crypt_ctx.des_ecb_encrypt_fn = DES_ecb_encrypt;
Expand Down

0 comments on commit 4968b69

Please sign in to comment.