mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 08:46:45 +00:00
Fix a preprocessor condition
This commit is contained in:
parent
d43df98ab1
commit
1f50e82dd2
1 changed files with 1 additions and 1 deletions
|
|
@ -86,7 +86,7 @@ extern struct timeval nsock_tod;
|
|||
#define NSOCK_SSL_STATE_INITIALIZED 1
|
||||
#define NSOCK_SSL_STATE_ATEXIT 0
|
||||
static int nsock_ssl_state = NSOCK_SSL_STATE_UNINITIALIZED;
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && defined LIBRESSL_VERSION_NUMBER
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined LIBRESSL_VERSION_NUMBER
|
||||
static void nsock_ssl_atexit(void)
|
||||
{
|
||||
nsock_ssl_state = NSOCK_SSL_STATE_ATEXIT;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue