aboutsummaryrefslogtreecommitdiffstats
path: root/cipher/rmd160.c
diff options
context:
space:
mode:
Diffstat (limited to 'cipher/rmd160.c')
-rw-r--r--cipher/rmd160.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cipher/rmd160.c b/cipher/rmd160.c
index 2c583d576..2b2b34c9e 100644
--- a/cipher/rmd160.c
+++ b/cipher/rmd160.c
@@ -368,7 +368,7 @@ rmd160_final(RMDHANDLE hd)
transform( hd, (u32*)hd->buffer );
p = hd->buffer;
- #ifdef HAVE_BIG_ENDIAN
+ #ifdef BIG_ENDIAN_HOST
#define X(a) do { *p++ = hd->h##a >> 24; *p++ = hd->h##a >> 16; \
*p++ = hd->h##a >> 8; *p++ = hd->h##a; } while(0)
#else /* little endian */