Skip to content

Commit

Permalink
- stevesk@cvs.openbsd.org 2006/04/22 18:29:33
Browse files Browse the repository at this point in the history
     [crc32.c]
     remove extra spaces
  • Loading branch information
djmdjm committed Apr 23, 2006
1 parent 2282c6e commit 08d4b0c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@
[uidswap.c]
use setres[ug]id() to permanently revoke privileges; ok deraadt@
(ID Sync only - portable already uses setres[ug]id() whenever possible)
- stevesk@cvs.openbsd.org 2006/04/22 18:29:33
[crc32.c]
remove extra spaces

20060421
- (djm) [Makefile.in configure.ac session.c sshpty.c]
Expand Down Expand Up @@ -4577,4 +4580,4 @@
- (djm) Trim deprecated options from INSTALL. Mention UsePAM
- (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu

$Id: ChangeLog,v 1.4315 2006/04/23 02:11:57 djm Exp $
$Id: ChangeLog,v 1.4316 2006/04/23 02:12:24 djm Exp $
4 changes: 2 additions & 2 deletions crc32.c
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -99,7 +99,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;
}

0 comments on commit 08d4b0c

Please sign in to comment.