summaryrefslogtreecommitdiffstats
path: root/src/util/sha1/sha1.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/sha1/sha1.c')
-rw-r--r--src/util/sha1/sha1.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/sha1/sha1.c b/src/util/sha1/sha1.c
index 78b3da31d0e..4fe2aa723c5 100644
--- a/src/util/sha1/sha1.c
+++ b/src/util/sha1/sha1.c
@@ -25,7 +25,7 @@
* blk0() and blk() perform the initial expand.
* I got the idea of expanding during the round function from SSLeay
*/
-#if PIPE_ARCH_LITTLE_ENDIAN
+#if UTIL_ARCH_LITTLE_ENDIAN
# define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
|(rol(block->l[i],8)&0x00FF00FF))
#else