summaryrefslogtreecommitdiffstats
path: root/crypto/rc4
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2005-07-20 11:47:47 +0000
committerAndy Polyakov <appro@openssl.org>2005-07-20 11:47:47 +0000
commit2802ec65c20b86332a55a2dd114b8d9bf60411ae (patch)
tree5f631c5deaf25c85df3a3ce3ca082a2c5f32541e /crypto/rc4
parentb3f56e8b386c9247e27829d1d3c8cab720c3b35a (diff)
Pedantic polish to rc4-ia64.pl.
Diffstat (limited to 'crypto/rc4')
-rw-r--r--crypto/rc4/asm/rc4-ia64.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/rc4/asm/rc4-ia64.pl b/crypto/rc4/asm/rc4-ia64.pl
index 988eec1e94..49cd5b5e69 100644
--- a/crypto/rc4/asm/rc4-ia64.pl
+++ b/crypto/rc4/asm/rc4-ia64.pl
@@ -231,7 +231,7 @@ sub emit_body {
___
if (($p & 0xf) == 0) {
- $c.="#ifdef RC4_BIG_ENDIAN\n";
+ $c.="#ifdef HOST_IS_BIG_ENDIAN\n";
&I(\$c,"shr.u OutWord[%u] = OutWord[%u], 32;;",
$iw1 % $NOutWord, $iw1 % $NOutWord);
$c.="#endif\n";
@@ -392,7 +392,7 @@ $code=<<___;
/* Define a macro for the bit number of the n-th byte: */
#if defined(_HPUX_SOURCE) || defined(B_ENDIAN)
-# define RC4_BIG_ENDIAN
+# define HOST_IS_BIG_ENDIAN
# define BYTE_POS(n) (56 - (8 * (n)))
#else
# define BYTE_POS(n) (8 * (n))