From 66527b3e5e201c7e907edc8fd71da4ba5ff575e0 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Sat, 17 Jun 2017 13:23:56 +0200 Subject: [PATCH] include "tomcrypt.h", not we want to include the local version of the header, not the system-version --- src/ciphers/rc2.c | 2 +- src/ciphers/safer/safer.c | 2 +- src/misc/hkdf/hkdf.c | 2 +- src/misc/pkcs5/pkcs_5_1.c | 2 +- src/misc/pkcs5/pkcs_5_2.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/ciphers/rc2.c b/src/ciphers/rc2.c index d86ac73..711c596 100644 --- a/src/ciphers/rc2.c +++ b/src/ciphers/rc2.c @@ -16,7 +16,7 @@ * Thanks to CodeView, SoftIce, and D86 for helping bring this code to * * the public. * \**********************************************************************/ -#include +#include "tomcrypt.h" /** @file rc2.c diff --git a/src/ciphers/safer/safer.c b/src/ciphers/safer/safer.c index f24457e..7014fc3 100644 --- a/src/ciphers/safer/safer.c +++ b/src/ciphers/safer/safer.c @@ -26,7 +26,7 @@ * *******************************************************************************/ -#include +#include "tomcrypt.h" #ifdef LTC_SAFER diff --git a/src/misc/hkdf/hkdf.c b/src/misc/hkdf/hkdf.c index fd31c7d..2d84856 100644 --- a/src/misc/hkdf/hkdf.c +++ b/src/misc/hkdf/hkdf.c @@ -11,7 +11,7 @@ #include #include -#include +#include "tomcrypt.h" #ifdef LTC_HKDF diff --git a/src/misc/pkcs5/pkcs_5_1.c b/src/misc/pkcs5/pkcs_5_1.c index b491740..4c294c7 100644 --- a/src/misc/pkcs5/pkcs_5_1.c +++ b/src/misc/pkcs5/pkcs_5_1.c @@ -6,7 +6,7 @@ * The library is free for all purposes without any express * guarantee it works. */ -#include +#include "tomcrypt.h" /** @file pkcs_5_1.c diff --git a/src/misc/pkcs5/pkcs_5_2.c b/src/misc/pkcs5/pkcs_5_2.c index ab69b83..1a96c38 100644 --- a/src/misc/pkcs5/pkcs_5_2.c +++ b/src/misc/pkcs5/pkcs_5_2.c @@ -6,7 +6,7 @@ * The library is free for all purposes without any express * guarantee it works. */ -#include +#include "tomcrypt.h" /** @file pkcs_5_2.c