aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/cast
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-01-19 19:18:20 +0000
committerBen Laurie <ben@openssl.org>1999-01-19 19:18:20 +0000
commitb13a1554925a173e04bb9802cbc123b40746a6fc (patch)
tree6401737127f8febc565fe575e540dea196b5a20a /crypto/cast
parentfdc71eccecb481750786024e68825fa83bfc4bd9 (diff)
downloadopenssl-b13a1554925a173e04bb9802cbc123b40746a6fc.tar.gz
Spelling mistake.
Diffstat (limited to 'crypto/cast')
-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 5e6ecb31f5..7d861de965 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,-,+,^);