diff options
author | mouring <mouring> | 2001-12-06 16:39:56 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-12-06 16:39:56 +0000 |
commit | ea1e7bf3d1fd4c476292db7a5c2a5faf0d5a639d (patch) | |
tree | fdb06d59cb5134b067fbfbcec44953fdae45c7bb /deattack.c | |
parent | a404059cfce04a4c342c34985cc073b78a450257 (diff) | |
download | openssh-ea1e7bf3d1fd4c476292db7a5c2a5faf0d5a639d.tar.gz |
- mpech@cvs.openbsd.org 2001/11/19 19:02:16
[deattack.c radix.c]
kill more registers
millert@ ok
Diffstat (limited to 'deattack.c')
-rw-r--r-- | deattack.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: deattack.c,v 1.14 2001/06/23 15:12:18 itojun Exp $ */ +/* $OpenBSD: deattack.c,v 1.15 2001/11/19 19:02:16 mpech Exp $ */ /* * Cryptographic attack detector for ssh - source code @@ -85,9 +85,9 @@ detect_attack(u_char *buf, u_int32_t len, u_char *IV) { static u_int16_t *h = (u_int16_t *) NULL; static u_int32_t n = HASH_MINSIZE / HASH_ENTRYSIZE; - register u_int32_t i, j; + u_int32_t i, j; u_int32_t l; - register u_char *c; + u_char *c; u_char *d; if (len > (SSH_MAXBLOCKS * SSH_BLOCKSIZE) || |