Added one more #ifdef for consistency

This commit is contained in:
zsuper 2025-04-03 20:00:14 -07:00
parent 2ef739f7c2
commit 226c45c969

2
ntlm.c
View file

@ -46,11 +46,13 @@
#define DOMAIN_BUFLEN 256
#define LM2_DIGEST_LEN 24
#ifdef USE_SSL
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
const EVP_MD *md4alg;
const EVP_MD *md5alg;
EVP_MD_CTX *mdctx;
#endif
#endif /* ifdef USE_SSL */
int ntlm_challenge = 0;
void message( char *s, ... );