From 11aff767fdab7ed8159e94de923799d617d45bc8 Mon Sep 17 00:00:00 2001 From: Takashi Kojo Date: Fri, 25 Apr 2014 13:50:12 +0900 Subject: [PATCH] corrected pic32mz header path --- ctaocrypt/src/aes.c | 2 +- ctaocrypt/src/des3.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ctaocrypt/src/aes.c b/ctaocrypt/src/aes.c index 3ed21b4c5..89a7aa915 100644 --- a/ctaocrypt/src/aes.c +++ b/ctaocrypt/src/aes.c @@ -63,7 +63,7 @@ #if defined(CYASSL_PIC32MZ_CRYPT) -#include "../../cyassl/ctaocrypt/port/pic32/pic32mz-crypt.h" +#include "cyassl/ctaocrypt/port/pic32/pic32mz-crypt.h" #define DEBUG_CYASSL /* core hardware crypt engine driver */ diff --git a/ctaocrypt/src/des3.c b/ctaocrypt/src/des3.c index 6b1987d47..a704b7910 100644 --- a/ctaocrypt/src/des3.c +++ b/ctaocrypt/src/des3.c @@ -685,7 +685,7 @@ int Des3_SetKey(Des3* des3, const byte* key, const byte* iv, int dir) #elif defined(CYASSL_PIC32MZ_CRYPT) - #include "../../cyassl/ctaocrypt/port/pic32/pic32mz-crypt.h" + #include "cyassl/ctaocrypt/port/pic32/pic32mz-crypt.h" void Des_SetIV(Des* des, const byte* iv); int Des3_SetIV(Des3* des, const byte* iv);