From: Ben Laurie Date: Tue, 19 Jan 1999 19:18:20 +0000 (+0000) Subject: Spelling mistake. X-Git-Tag: OpenSSL_0_9_2b~242 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=b13a1554925a173e04bb9802cbc123b40746a6fc;ds=inline Spelling mistake. --- diff --git a/CHANGES b/CHANGES index 33afc413b7..198291a963 100644 --- a/CHANGES +++ b/CHANGES @@ -5,6 +5,9 @@ Changes between 0.9.1c and 0.9.2 + *) Spelling mistake in C version of CAST-128. + [Ben Laurie, reported by Jeremy Hylton ] + *) Changes to the error generation code. The perl script err-code.pl now reads in the old error codes and retains the old numbers, only adding new ones if necessary. It also only changes the .err files if new 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,-,+,^);