Commit 27d63818 authored by Richard Levitte's avatar Richard Levitte
Browse files

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.
parent fa68935f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
#include <openssl/evp.h>
#include <openssl/fips.h>
#include <openssl/err.h>
#include "../e_os.h"
#include "e_os.h"

#define AES_BLOCK_SIZE 16

+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
#include <openssl/evp.h>
#include <openssl/fips.h>
#include <openssl/err.h>
#include "../e_os.h"
#include "e_os.h"

/*#define AES_BLOCK_SIZE 16*/

+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@
#include <sys/types.h>
#include <sys/stat.h>

#include "../e_os.h"
#include "e_os.h"

#include <openssl/crypto.h>
#include <openssl/rand.h>
+1 −1
Original line number Diff line number Diff line
@@ -108,7 +108,7 @@
#include <openssl/rand.h>
#include <openssl/fips_rand.h>

#include "../e_os.h"
#include "e_os.h"

#ifndef FIPS
int main(int argc, char *argv[])