diff options
author | 2014-05-24 09:16:07 +0000 | |
---|---|---|
committer | 2014-05-24 09:16:07 +0000 | |
commit | 20175b857a0c3817cfda731930e8b4bca7ad6b00 (patch) | |
tree | 58413d16b4c5c269a24ca27b994889dcb17837ee /lib/libssl/src/crypto/dsa/dsa.h | |
parent | Expand OPENSSL_{GLOBAL,EXTERN} macros that I missed last time around, (diff) | |
download | wireguard-openbsd-20175b857a0c3817cfda731930e8b4bca7ad6b00.tar.xz wireguard-openbsd-20175b857a0c3817cfda731930e8b4bca7ad6b00.zip |
Almost nothing actually needs to include <openssl/e_os2.h>, however by
including it they get <openssl/opensslconf.h>. So instead of pulling in
<openssl/e_os2.h>, just pull in <openssl/opensslconf.h>.
"go ahead" miod@
Diffstat (limited to 'lib/libssl/src/crypto/dsa/dsa.h')
-rw-r--r-- | lib/libssl/src/crypto/dsa/dsa.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libssl/src/crypto/dsa/dsa.h b/lib/libssl/src/crypto/dsa/dsa.h index a6f6d0b0b24..c8714992012 100644 --- a/lib/libssl/src/crypto/dsa/dsa.h +++ b/lib/libssl/src/crypto/dsa/dsa.h @@ -65,7 +65,7 @@ #ifndef HEADER_DSA_H #define HEADER_DSA_H -#include <openssl/e_os2.h> +#include <openssl/opensslconf.h> #ifdef OPENSSL_NO_DSA #error DSA is disabled. |