summaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorben <ben>1999-01-19 19:18:19 +0000
committerben <ben>1999-01-19 19:18:19 +0000
commitd6f9fae8be690a818aad7e8f01529562c6364018 (patch)
treeefc2b5beb78b34476db58c6c4d6fd39f69a4e9b2 /crypto
parentf0cb46fff2ff228fe40f441c8fa9096aa9be0d1d (diff)
downloadopenssl-d6f9fae8be690a818aad7e8f01529562c6364018.tar.gz
Spelling mistake.
Diffstat (limited to 'crypto')
-rw-r--r--crypto/cast/c_enc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/crypto/cast/c_enc.c b/crypto/cast/c_enc.c
index 5e6ecb31f..7d861de96 100644
--- a/crypto/cast/c_enc.c
+++ b/crypto/cast/c_enc.c
@@ -81,7 +81,7 @@ CAST_KEY *key;
E_CAST( 9,k,r,l,+,^,-);
E_CAST(10,k,l,r,^,-,+);
E_CAST(11,k,r,l,-,+,^);
- if(!k->short_key)
+ if(!key->short_key)
{
E_CAST(12,k,l,r,+,^,-);
E_CAST(13,k,r,l,^,-,+);
@@ -103,7 +103,7 @@ CAST_KEY *key;
l=data[0];
r=data[1];
- if(!k->short_key)
+ if(!key->short_key)
{
E_CAST(15,k,l,r,+,^,-);
E_CAST(14,k,r,l,-,+,^);