summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormcgreer%netscape.com <devnull@localhost>2001-01-06 16:34:23 +0000
committermcgreer%netscape.com <devnull@localhost>2001-01-06 16:34:23 +0000
commit45e620b9f62ab3636d3903e61085e326132c11ae (patch)
tree544e3a2bcc7d68d7bb503779a927c55aff5b8b63
parent6203163652d751965a797a5a6131febafc372882 (diff)
downloadnss-hg-45e620b9f62ab3636d3903e61085e326132c11ae.tar.gz
fix broken build on bigendian platforms
-rw-r--r--security/nss/lib/freebl/md5.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/security/nss/lib/freebl/md5.c b/security/nss/lib/freebl/md5.c
index c992cc4f1..b0c0ed6a0 100644
--- a/security/nss/lib/freebl/md5.c
+++ b/security/nss/lib/freebl/md5.c
@@ -461,6 +461,7 @@ void
MD5_End(MD5Context *cx, unsigned char *digest,
unsigned int *digestLen, unsigned int maxDigestLen)
{
+ PRUint32 tmp;
PRUint32 lowInput, highInput;
PRUint32 inBufIndex = cx->lsbInput & 63;