summaryrefslogtreecommitdiffstats
path: root/src/crypto/arc4.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/arc4.c')
-rw-r--r--src/crypto/arc4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crypto/arc4.c b/src/crypto/arc4.c
index e58fba7c..ab3325c8 100644
--- a/src/crypto/arc4.c
+++ b/src/crypto/arc4.c
@@ -20,8 +20,8 @@
FILE_LICENCE ( GPL2_OR_LATER );
-#include <gpxe/crypto.h>
-#include <gpxe/arc4.h>
+#include <ipxe/crypto.h>
+#include <ipxe/arc4.h>
#define SWAP( ary, i, j ) \
({ u8 temp = ary[i]; ary[i] = ary[j]; ary[j] = temp; })