From d5bbae0ace3dcb8c40cb2a5c83451b79622a88cf Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Fri, 1 Oct 1999 18:18:57 +0000 Subject: s/long/int/ --- usr.bin/ssh/crc32.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.bin/ssh/crc32.h') diff --git a/usr.bin/ssh/crc32.h b/usr.bin/ssh/crc32.h index dbc0a2fb1e7..de7704d6da5 100644 --- a/usr.bin/ssh/crc32.h +++ b/usr.bin/ssh/crc32.h @@ -13,13 +13,13 @@ Functions for computing 32-bit CRC. */ -/* RCSID("$Id: crc32.h,v 1.1 1999/09/26 20:53:35 deraadt Exp $"); */ +/* RCSID("$Id: crc32.h,v 1.2 1999/10/01 18:18:56 deraadt Exp $"); */ #ifndef CRC32_H #define CRC32_H /* This computes a 32 bit CRC of the data in the buffer, and returns the CRC. The polynomial used is 0xedb88320. */ -unsigned long crc32(const unsigned char *buf, unsigned int len); +unsigned int crc32(const unsigned char *buf, unsigned int len); #endif /* CRC32_H */ -- cgit v1.2.3