From 30553a43ede70f0c54aa444269c771a89b753ec1 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Mon, 1 Apr 2013 13:42:41 -0700 Subject: [PATCH] when disabling arc4, ignores contents of arc4.c --- ctaocrypt/src/arc4.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ctaocrypt/src/arc4.c b/ctaocrypt/src/arc4.c index 7c3c2f07a..9c77f7fc5 100644 --- a/ctaocrypt/src/arc4.c +++ b/ctaocrypt/src/arc4.c @@ -23,6 +23,8 @@ #include #endif +#ifndef NO_RC4 + #include @@ -170,3 +172,6 @@ static void Arc4CaviumProcess(Arc4* arc4, byte* out, const byte* in, } #endif /* HAVE_CAVIUM */ + +#endif /* NO_ARC4 */ +