diff options
author | Rob Landley | 2006-08-03 17:58:17 +0000 |
---|---|---|
committer | Rob Landley | 2006-08-03 17:58:17 +0000 |
commit | 86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74 (patch) | |
tree | b3002e01131f99581c1be3462b96b2f2c40408f4 /archival/gzip.c | |
parent | 7478804b783619762a52a740037126ef8711acc2 (diff) | |
download | busybox-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.zip busybox-86b4d64aa3f5ca4c2824a8948541b0e18dfe0a74.tar.gz |
These should have been part of 15767 too.
Diffstat (limited to 'archival/gzip.c')
-rw-r--r-- | archival/gzip.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/archival/gzip.c b/archival/gzip.c index 486f78f..0962a00 100644 --- a/archival/gzip.c +++ b/archival/gzip.c @@ -1187,7 +1187,7 @@ int gzip_main(int argc, char **argv) ALLOC(ush, tab_prefix, 1L << BITS); /* Initialise the CRC32 table */ - crc_32_tab = bb_crc32_filltable(0); + crc_32_tab = crc32_filltable(0); clear_bufs(); part_nb = 0; @@ -1209,7 +1209,7 @@ int gzip_main(int argc, char **argv) inFileNum = STDIN_FILENO; outFileNum = STDOUT_FILENO; } else { - inFileNum = bb_xopen3(argv[i], O_RDONLY, 0); + inFileNum = xopen3(argv[i], O_RDONLY, 0); if (fstat(inFileNum, &statBuf) < 0) bb_perror_msg_and_die("%s", argv[i]); time_stamp = statBuf.st_ctime; |