aboutsummaryrefslogtreecommitdiffstats
path: root/md5.c
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-07 04:36:52 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-07 04:36:52 +0000
commitc8bdd50ea7f2ff00e1f1e89c9265707538274302 (patch)
treea13c4842f86f30021c87acd410984ae134241207 /md5.c
parent74cb4e882537233510d5931187f92bba1b14413f (diff)
Fix for endianness (bug #1174)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2363 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'md5.c')
-rwxr-xr-xmd5.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/md5.c b/md5.c
index 543e8c581..f132ffb3a 100755
--- a/md5.c
+++ b/md5.c
@@ -1,6 +1,6 @@
/* MD5 checksum routines used for authentication. Not covered by GPL, but
in the public domain as per the copyright below */
-
+#include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN || BYTE_ORDER == BIG_ENDIAN
# define HIGHFIRST 1
# endif