mirror of
https://github.com/vanhauser-thc/thc-hydra.git
synced 2025-08-22 06:13:55 -07:00
Fix compiler warning.
When used with other statements, #ifdef should be split in tokens Warning: hydra-mod.c:441:19: warning: extra tokens at end of #ifdef directive
This commit is contained in:
parent
402cc0934e
commit
773bc7228f
1 changed files with 2 additions and 2 deletions
|
@ -438,7 +438,7 @@ int internal__hydra_connect(char *host, int port, int protocol, int type) {
|
|||
return ret;
|
||||
}
|
||||
|
||||
#ifdef LIBOPENSSL && !defined(LIBRESSL_VERSION_NUMBER)
|
||||
#if defined LIBOPENSSL && !defined(LIBRESSL_VERSION_NUMBER)
|
||||
RSA *ssl_temp_rsa_cb(SSL * ssl, int export, int keylength) {
|
||||
int ok = 0;
|
||||
#if OPENSSL_VERSION_NUMBER >= 0x10100000L && !defined(LIBRESSL_VERSION_NUMBER)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue