diff options
author | Rob Landley <rob@landley.net> | 2009-01-05 01:05:43 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2009-01-05 01:05:43 -0600 |
commit | b15b8fa99ae53396145ea540106b74d37797f774 (patch) | |
tree | 1b16efb7c111d9ef52378b5765cb585d5eb01c79 /lib/bunzip.c | |
parent | 2f638c397a916399049ac0adaf32a53f635d31bc (diff) | |
download | toybox-b15b8fa99ae53396145ea540106b74d37797f774.tar.gz |
Add -N, -I, -L, and -P options to cksum.
Diffstat (limited to 'lib/bunzip.c')
-rw-r--r-- | lib/bunzip.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bunzip.c b/lib/bunzip.c index 18984af4..f860aa64 100644 --- a/lib/bunzip.c +++ b/lib/bunzip.c @@ -609,7 +609,7 @@ int start_bunzip(struct bunzip_data **bdp, int src_fd, char *inbuf, int len) bd->in_fd = src_fd; } - crc_init(bd->crc32Table); + crc_init(bd->crc32Table, 0); // Ensure that file starts with "BZh". for (i=0;i<3;i++) |