diff options
author | Richard Levitte <levitte@openssl.org> | 2014-09-24 22:59:37 +0200 |
---|---|---|
committer | Janusz Kozerski <j.kozerski@samsung.com> | 2014-10-20 15:26:06 +0200 |
commit | c617ced7f1e8619aac58a00ed2cacf89e00f88f1 (patch) | |
tree | 6037db7bb82f927c39d835e893dc1ab67e96f135 /crypto | |
parent | d761e69058618694315d3fe33ff41d2d91778312 (diff) | |
download | openssl-c617ced7f1e8619aac58a00ed2cacf89e00f88f1.tar.gz openssl-c617ced7f1e8619aac58a00ed2cacf89e00f88f1.tar.bz2 openssl-c617ced7f1e8619aac58a00ed2cacf89e00f88f1.zip |
Include "constant_time_locl.h" rather than "../constant_time_locl.h".
The different -I compiler parameters will take care of the rest...
Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/evp/evp_enc.c | 2 | ||||
-rw-r--r-- | crypto/rsa/rsa_oaep.c | 2 | ||||
-rw-r--r-- | crypto/rsa/rsa_pk1.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c index 32971fd..7b1842a 100644 --- a/crypto/evp/evp_enc.c +++ b/crypto/evp/evp_enc.c @@ -67,7 +67,7 @@ #ifdef OPENSSL_FIPS #include <openssl/fips.h> #endif -#include "../constant_time_locl.h" +#include "constant_time_locl.h" #include "evp_locl.h" #ifdef OPENSSL_FIPS diff --git a/crypto/rsa/rsa_oaep.c b/crypto/rsa/rsa_oaep.c index b81f488..c363331 100644 --- a/crypto/rsa/rsa_oaep.c +++ b/crypto/rsa/rsa_oaep.c @@ -18,7 +18,7 @@ * an equivalent notion. */ -#include "../constant_time_locl.h" +#include "constant_time_locl.h" #if !defined(OPENSSL_NO_SHA) && !defined(OPENSSL_NO_SHA1) #include <stdio.h> diff --git a/crypto/rsa/rsa_pk1.c b/crypto/rsa/rsa_pk1.c index e028ff7..c2da56f 100644 --- a/crypto/rsa/rsa_pk1.c +++ b/crypto/rsa/rsa_pk1.c @@ -56,7 +56,7 @@ * [including the GNU Public Licence.] */ -#include "../constant_time_locl.h" +#include "constant_time_locl.h" #include <stdio.h> #include "cryptlib.h" |