diff options
author | 2006-04-22 18:29:33 +0000 | |
---|---|---|
committer | 2006-04-22 18:29:33 +0000 | |
commit | a79855df6c33006a9fc3f4e3462e774a80f25bd6 (patch) | |
tree | 6b446b09724f0614b280461b634e80e0d0ac6a75 | |
parent | Remove remaining stuff from state QUIT, adjust some comments (diff) | |
download | wireguard-openbsd-a79855df6c33006a9fc3f4e3462e774a80f25bd6.tar.xz wireguard-openbsd-a79855df6c33006a9fc3f4e3462e774a80f25bd6.zip |
remove extra spaces
-rw-r--r-- | usr.bin/ssh/crc32.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/crc32.c b/usr.bin/ssh/crc32.c index 85be89f9ab1..4d5c8a13c22 100644 --- a/usr.bin/ssh/crc32.c +++ b/usr.bin/ssh/crc32.c @@ -1,4 +1,4 @@ -/* $OpenBSD: crc32.c,v 1.10 2006/03/25 22:22:43 djm Exp $ */ +/* $OpenBSD: crc32.c,v 1.11 2006/04/22 18:29:33 stevesk Exp $ */ /* * Copyright (c) 2003 Markus Friedl. All rights reserved. @@ -100,7 +100,7 @@ ssh_crc32(const u_char *buf, u_int32_t size) u_int32_t i, crc; crc = 0; - for (i = 0; i < size; i++) + for (i = 0; i < size; i++) crc = crc32tab[(crc ^ buf[i]) & 0xff] ^ (crc >> 8); return crc; } |