aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/md5.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/md5.c b/src/md5.c
index 3f5013ddf3e..a27d67b04fb 100644
--- a/src/md5.c
+++ b/src/md5.c
@@ -38,7 +38,7 @@
38#ifdef _LIBC 38#ifdef _LIBC
39# include <endian.h> 39# include <endian.h>
40# if __BYTE_ORDER == __BIG_ENDIAN 40# if __BYTE_ORDER == __BIG_ENDIAN
41# define WORDS_BIGENDIAN 1 41# define WORDS_BIG_ENDIAN 1
42# endif 42# endif
43/* We need to keep the namespace clean so define the MD5 function 43/* We need to keep the namespace clean so define the MD5 function
44 protected using leading __ . */ 44 protected using leading __ . */
@@ -53,7 +53,7 @@
53 53
54#include "md5.h" 54#include "md5.h"
55 55
56#ifdef WORDS_BIGENDIAN 56#ifdef WORDS_BIG_ENDIAN
57# define SWAP(n) \ 57# define SWAP(n) \
58 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24)) 58 (((n) << 24) | (((n) & 0xff00) << 8) | (((n) >> 8) & 0xff00) | ((n) >> 24))
59#else 59#else