summaryrefslogtreecommitdiffstats
path: root/usr.bin/cksum/sum1.c
diff options
context:
space:
mode:
authorrobert <robert@FreeBSD.org>2003-03-13 23:32:28 +0000
committerrobert <robert@FreeBSD.org>2003-03-13 23:32:28 +0000
commit0ddc4b17e7abc81a103d45cac7cff2cf55b25d66 (patch)
tree7ef3584e3d42073e216cde88c80a8ac51e19b5ff /usr.bin/cksum/sum1.c
parent2939d783ece3a33d37be2601d6d3937a31059179 (diff)
downloadFreeBSD-src-0ddc4b17e7abc81a103d45cac7cff2cf55b25d66.zip
FreeBSD-src-0ddc4b17e7abc81a103d45cac7cff2cf55b25d66.tar.gz
- For variables holding offset values, use off_t rather than
int, long int or u_int32_t. This changes the interface of all the CRC calculation and output functions from cksum. - Print variables of type off_t as intmax_t using a cast and %jd. - Use the standardized uint32_t type instead of u_int32_t. To have uint32_t defined, include <stdint.h> where necessary. Style(9): - Move #include directives where they belong (esp. crc32.c). - Add empty lines between #include directives of system headers, standard library headers and local headers. - Test a pointer value against NULL. - Put a space after the return keyword. PR: bin/48424
Diffstat (limited to 'usr.bin/cksum/sum1.c')
-rw-r--r--usr.bin/cksum/sum1.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/usr.bin/cksum/sum1.c b/usr.bin/cksum/sum1.c
index 93794f3..406b40e 100644
--- a/usr.bin/cksum/sum1.c
+++ b/usr.bin/cksum/sum1.c
@@ -36,20 +36,23 @@
static char sccsid[] = "@(#)sum1.c 8.1 (Berkeley) 6/6/93";
#endif
#endif /* not lint */
+
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
#include <sys/types.h>
+
#include <unistd.h>
+#include <stdint.h>
#include "extern.h"
int
-csum1(int fd, u_int32_t *cval, u_int32_t *clen)
+csum1(int fd, uint32_t *cval, off_t *clen)
{
- u_int32_t total;
int nr;
u_int lcrc;
+ off_t total;
u_char *p;
u_char buf[8192];
@@ -65,9 +68,9 @@ csum1(int fd, u_int32_t *cval, u_int32_t *clen)
lcrc = ((lcrc >> 1) + *p) & 0xffff;
}
if (nr < 0)
- return(1);
+ return (1);
*cval = lcrc;
*clen = total;
- return(0);
+ return (0);
}
OpenPOWER on IntegriCloud