diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-18 18:14:18 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2002-01-18 18:14:18 +0000 |
commit | b4cc565fa78965eaed9ccb6f3da0c2ab3c47e65d (patch) | |
tree | c308044132ab5cb2bfac283edd90c831129a292b /usr.bin/ssh/cipher.c | |
parent | b13c9bdd64e4347a6e23aca883787c709ce282e9 (diff) |
unneeded cast cleanup; ok markus@
Diffstat (limited to 'usr.bin/ssh/cipher.c')
-rw-r--r-- | usr.bin/ssh/cipher.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/cipher.c b/usr.bin/ssh/cipher.c index c02b35161b0..2186d88ec02 100644 --- a/usr.bin/ssh/cipher.c +++ b/usr.bin/ssh/cipher.c @@ -35,7 +35,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: cipher.c,v 1.48 2001/12/19 07:18:56 deraadt Exp $"); +RCSID("$OpenBSD: cipher.c,v 1.49 2002/01/18 18:14:17 stevesk Exp $"); #include "xmalloc.h" #include "log.h" @@ -308,7 +308,7 @@ rijndael_cbc_encrypt(CipherContext *cc, u_char *dest, const u_char *src, if (len % RIJNDAEL_BLOCKSIZE) fatal("rijndael_cbc_encrypt: bad len %d", len); cnow = dest; - plain = (u_char *) src; + plain = (u_char *)src; cprev = iv; for (i = 0; i < blocks; i++, plain+=RIJNDAEL_BLOCKSIZE, cnow+=RIJNDAEL_BLOCKSIZE) { |