=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/cipher-ctr.c,v retrieving revision 1.4.4.1 retrieving revision 1.4.4.2 diff -u -r1.4.4.1 -r1.4.4.2 --- src/usr.bin/ssh/Attic/cipher-ctr.c 2005/03/10 16:28:27 1.4.4.1 +++ src/usr.bin/ssh/Attic/cipher-ctr.c 2005/09/02 03:45:00 1.4.4.2 @@ -14,7 +14,7 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ #include "includes.h" -RCSID("$OpenBSD: cipher-ctr.c,v 1.4.4.1 2005/03/10 16:28:27 brad Exp $"); +RCSID("$OpenBSD: cipher-ctr.c,v 1.4.4.2 2005/09/02 03:45:00 brad Exp $"); #include #include @@ -82,7 +82,7 @@ } if (key != NULL) AES_set_encrypt_key(key, EVP_CIPHER_CTX_key_length(ctx) * 8, - &c->aes_ctx); + &c->aes_ctx); if (iv != NULL) memcpy(c->aes_counter, iv, AES_BLOCK_SIZE); return (1);