diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2021-11-20 16:48:10 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2021-11-21 00:33:34 +0100 |
commit | cc5c80eb4d6f98b94f20e5abd4cd50c5bf0e5a44 (patch) | |
tree | 337fa4b5691643fea540e5026a4c64dc8a9a3509 /fetchmail.c | |
parent | 9dadc0e51c91e98d4f23b3385fd2ef20fbdb3358 (diff) | |
download | fetchmail-cc5c80eb4d6f98b94f20e5abd4cd50c5bf0e5a44.tar.gz fetchmail-cc5c80eb4d6f98b94f20e5abd4cd50c5bf0e5a44.tar.bz2 fetchmail-cc5c80eb4d6f98b94f20e5abd4cd50c5bf0e5a44.zip |
wolfSSL: support 5.0.0+.
Diffstat (limited to 'fetchmail.c')
-rw-r--r-- | fetchmail.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fetchmail.c b/fetchmail.c index 060e0a9f..70b4d3a9 100644 --- a/fetchmail.c +++ b/fetchmail.c @@ -55,9 +55,9 @@ #endif /* ENETUNREACH */ #ifdef SSL_ENABLE +#include "tls-aux.h" /* compatibility and helper functions */ #include <openssl/ssl.h> /* for OPENSSL_NO_SSL2 and ..._SSL3 checks */ #include <openssl/opensslv.h> /* for version queries */ -#include "tls-aux.h" /* compatibility and helper functions */ #endif /* prototypes for internal functions */ |