From 27d63818e1d5e97acfca1a6f960ee52ed52df136 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Wed, 10 Sep 2003 09:15:09 +0000 Subject: [PATCH] Include "e_os.h" instead of "../e_os.h", and trust the building procedure to give the correct -I options to the compiler. This is *especially* true for test programs that appear in two places, with different paths to e_os.h depending on where they are built. --- fips/aes/fips_aesavs.c | 2 +- fips/des/fips_desmovs.c | 2 +- fips/dsa/fips_dsatest.c | 2 +- fips/rand/fips_randtest.c | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/fips/aes/fips_aesavs.c b/fips/aes/fips_aesavs.c index 532586a496..5ffbb086c1 100644 --- a/fips/aes/fips_aesavs.c +++ b/fips/aes/fips_aesavs.c @@ -19,7 +19,7 @@ #include #include #include -#include "../e_os.h" +#include "e_os.h" #define AES_BLOCK_SIZE 16 diff --git a/fips/des/fips_desmovs.c b/fips/des/fips_desmovs.c index db44b8a6e4..177cff26e0 100644 --- a/fips/des/fips_desmovs.c +++ b/fips/des/fips_desmovs.c @@ -20,7 +20,7 @@ #include #include #include -#include "../e_os.h" +#include "e_os.h" /*#define AES_BLOCK_SIZE 16*/ diff --git a/fips/dsa/fips_dsatest.c b/fips/dsa/fips_dsatest.c index 7a54d38c78..8fc4d01fc0 100644 --- a/fips/dsa/fips_dsatest.c +++ b/fips/dsa/fips_dsatest.c @@ -62,7 +62,7 @@ #include #include -#include "../e_os.h" +#include "e_os.h" #include #include diff --git a/fips/rand/fips_randtest.c b/fips/rand/fips_randtest.c index 5fcee19d52..011678a5a5 100644 --- a/fips/rand/fips_randtest.c +++ b/fips/rand/fips_randtest.c @@ -108,7 +108,7 @@ #include #include -#include "../e_os.h" +#include "e_os.h" #ifndef FIPS int main(int argc, char *argv[]) -- 2.25.1