diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-05-22 10:05:27 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-22 10:05:27 -0400 |
commit | 48d752407b656652c5bdd96c0a839cb291adfc74 (patch) | |
tree | dff0b6dc6bc49678377b03cb459498a0a227ca8e /src/common | |
parent | add00045aa56c77b93b1fb4b3cf424588a7baf0e (diff) | |
download | tor-48d752407b656652c5bdd96c0a839cb291adfc74.tar.gz tor-48d752407b656652c5bdd96c0a839cb291adfc74.zip |
Add a missing include to get the declaration of OPENSSL_1_1_API
Apparently, even though I had tested on OpenSSL 1.1.1 with
no-deprecated, OpenSSL 1.1.0 is different enough that I should have
tested with that as well.
Fixes bug 26156; bugfix on 0.3.4.1-alpha where we first declared
support for this configuration.
Diffstat (limited to 'src/common')
-rw-r--r-- | src/common/aes.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/aes.c b/src/common/aes.c index f6b933374a..86f3472bfd 100644 --- a/src/common/aes.c +++ b/src/common/aes.c @@ -16,6 +16,7 @@ #include <ws2tcpip.h> #endif +#include "compat_openssl.h" #include <openssl/opensslv.h> #include "crypto_openssl_mgt.h" |