From owner-cvs-src Thu Mar 13 15:34:21 2003 Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C38E737B401; Thu, 13 Mar 2003 15:34:19 -0800 (PST) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 614C643FB1; Thu, 13 Mar 2003 15:34:19 -0800 (PST) (envelope-from robert@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id h2DNYJ0U006875; Thu, 13 Mar 2003 15:34:19 -0800 (PST) (envelope-from robert@repoman.freebsd.org) Received: (from robert@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id h2DNYJEm006874; Thu, 13 Mar 2003 15:34:19 -0800 (PST) Message-Id: <200303132334.h2DNYJEm006874@repoman.freebsd.org> From: Robert Drehmel Date: Thu, 13 Mar 2003 15:34:19 -0800 (PST) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.sbin/ckdist ckdist.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-src@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG robert 2003/03/13 15:34:19 PST FreeBSD src repository Modified files: usr.sbin/ckdist ckdist.c Log: - Align the function prototype of the external `crc' function with how `crc' is actually defined. Data type corrections: - Define variables which contain file byte offset values as type off_t as required by the `crc' function. - Change the type of a variable carrying a CRC checksum from `u_long' to `uint32_t'. - Parse the length of a file with sscanf as `intmax_t' (as there is no conversion specifier for `off_t'). Style(9): - Put an empty line between #include directives for system and user header files. Revision Changes Path 1.5 +11 -6 src/usr.sbin/ckdist/ckdist.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-src" in the body of the message