diff options
author | 2006-03-20 18:41:54 +0000 | |
---|---|---|
committer | 2006-03-20 18:41:54 +0000 | |
commit | b9d392f0764202cd092bb89b08580ca33710364c (patch) | |
tree | 2dceba4f90e6c7ac2b515216e3b0bf08cbbf6f62 | |
parent | cast xstrdup to propert u_char * (diff) | |
download | wireguard-openbsd-b9d392f0764202cd092bb89b08580ca33710364c.tar.xz wireguard-openbsd-b9d392f0764202cd092bb89b08580ca33710364c.zip |
spacing
-rw-r--r-- | usr.bin/ssh/deattack.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/ssh/deattack.c b/usr.bin/ssh/deattack.c index 3d48afc89ef..b50d81f85f5 100644 --- a/usr.bin/ssh/deattack.c +++ b/usr.bin/ssh/deattack.c @@ -49,7 +49,7 @@ static void crc_update(u_int32_t *a, u_int32_t b) { b ^= *a; - *a = ssh_crc32((u_char *) &b, sizeof(b)); + *a = ssh_crc32((u_char *)&b, sizeof(b)); } /* detect if a block is used in a particular pattern */ |