diff options
author | 2014-05-31 23:33:32 +0000 | |
---|---|---|
committer | 2014-05-31 23:33:32 +0000 | |
commit | 6d6bb18994334260a699979d2d2e50b33951a156 (patch) | |
tree | 7f51037453cf82bfd5d111f1671e102a2be473f5 /lib/libssl/src | |
parent | Remove now unnecessary local patch to disable usemallocwrap on m68k (diff) | |
download | wireguard-openbsd-6d6bb18994334260a699979d2d2e50b33951a156.tar.xz wireguard-openbsd-6d6bb18994334260a699979d2d2e50b33951a156.zip |
Get the public headers from the official place with <openssl/ >
from Brent Cook
Diffstat (limited to 'lib/libssl/src')
-rw-r--r-- | lib/libssl/src/crypto/bn/bn_const.c | 2 | ||||
-rw-r--r-- | lib/libssl/src/crypto/chacha/chacha.c | 2 | ||||
-rw-r--r-- | lib/libssl/src/crypto/o_init.c | 3 | ||||
-rw-r--r-- | lib/libssl/src/crypto/poly1305/poly1305.c | 2 | ||||
-rw-r--r-- | lib/libssl/src/crypto/ts/ts_lib.c | 2 | ||||
-rw-r--r-- | lib/libssl/src/crypto/ts/ts_rsp_print.c | 2 |
6 files changed, 7 insertions, 6 deletions
diff --git a/lib/libssl/src/crypto/bn/bn_const.c b/lib/libssl/src/crypto/bn/bn_const.c index 1c8bc9b5dfa..2ba2bbd8271 100644 --- a/lib/libssl/src/crypto/bn/bn_const.c +++ b/lib/libssl/src/crypto/bn/bn_const.c @@ -1,7 +1,7 @@ /* crypto/bn/knownprimes.c */ /* Insert boilerplate */ -#include "bn.h" +#include <openssl/bn.h> /* "First Oakley Default Group" from RFC2409, section 6.1. * diff --git a/lib/libssl/src/crypto/chacha/chacha.c b/lib/libssl/src/crypto/chacha/chacha.c index 1bc95f502d4..f0e818eb66b 100644 --- a/lib/libssl/src/crypto/chacha/chacha.c +++ b/lib/libssl/src/crypto/chacha/chacha.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "chacha.h" +#include <openssl/chacha.h> #include "chacha-merged.c" void diff --git a/lib/libssl/src/crypto/o_init.c b/lib/libssl/src/crypto/o_init.c index 09c982098cd..89c708752cc 100644 --- a/lib/libssl/src/crypto/o_init.c +++ b/lib/libssl/src/crypto/o_init.c @@ -1,5 +1,6 @@ /* Ted Unangst places this file in the public domain. */ -#include <crypto.h> + +#include <openssl/crypto.h> void OPENSSL_init(void) diff --git a/lib/libssl/src/crypto/poly1305/poly1305.c b/lib/libssl/src/crypto/poly1305/poly1305.c index 96083fe7e98..c2c3906c942 100644 --- a/lib/libssl/src/crypto/poly1305/poly1305.c +++ b/lib/libssl/src/crypto/poly1305/poly1305.c @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#include "poly1305.h" +#include <openssl/poly1305.h> #include "poly1305-donna.c" void diff --git a/lib/libssl/src/crypto/ts/ts_lib.c b/lib/libssl/src/crypto/ts/ts_lib.c index b9d92a3012b..5018e959bbf 100644 --- a/lib/libssl/src/crypto/ts/ts_lib.c +++ b/lib/libssl/src/crypto/ts/ts_lib.c @@ -61,7 +61,7 @@ #include <openssl/objects.h> #include <openssl/bn.h> #include <openssl/x509v3.h> -#include "ts.h" +#include <openssl/ts.h> /* Local function declarations. */ diff --git a/lib/libssl/src/crypto/ts/ts_rsp_print.c b/lib/libssl/src/crypto/ts/ts_rsp_print.c index 248674f4e56..6615e204456 100644 --- a/lib/libssl/src/crypto/ts/ts_rsp_print.c +++ b/lib/libssl/src/crypto/ts/ts_rsp_print.c @@ -61,7 +61,7 @@ #include <openssl/objects.h> #include <openssl/bn.h> #include <openssl/x509v3.h> -#include "ts.h" +#include <openssl/ts.h> struct status_map_st { int bit; |