]> git.sur5r.net Git - openldap/commitdiff
Fix BYTE_ORDER test.
authorKurt Zeilenga <kurt@openldap.org>
Wed, 21 Oct 1998 02:22:43 +0000 (02:22 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 21 Oct 1998 02:22:43 +0000 (02:22 +0000)
libraries/liblutil/sha1.c

index 833317d70878068cc25a0da2eae78d1a3a8eefac..a6153f1f8a2e5c90b66483dff9b9c8110c6bc524 100644 (file)
  * blk0() and blk() perform the initial expand.
  * I got the idea of expanding during the round function from SSLeay
  */
-#if BYTE_ORDER = LITTLE_ENDIAN
+#if BYTE_ORDER == LITTLE_ENDIAN
 # define blk0(i) (block->l[i] = (rol(block->l[i],24)&0xFF00FF00) \
     |(rol(block->l[i],8)&0x00FF00FF))
-#endif
 #else
 # define blk0(i) block->l[i]
+#endif
 #define blk(i) (block->l[i&15] = rol(block->l[(i+13)&15]^block->l[(i+8)&15] \
     ^block->l[(i+2)&15]^block->l[i&15],1))