diff options
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 486f78f88..0962a00a7 100644 --- a/archival/gzip.c +++ b/archival/gzip.c | |||
@@ -1187,7 +1187,7 @@ int gzip_main(int argc, char **argv) | |||
1187 | ALLOC(ush, tab_prefix, 1L << BITS); | 1187 | ALLOC(ush, tab_prefix, 1L << BITS); |
1188 | 1188 | ||
1189 | /* Initialise the CRC32 table */ | 1189 | /* Initialise the CRC32 table */ |
1190 | crc_32_tab = bb_crc32_filltable(0); | 1190 | crc_32_tab = crc32_filltable(0); |
1191 | 1191 | ||
1192 | clear_bufs(); | 1192 | clear_bufs(); |
1193 | part_nb = 0; | 1193 | part_nb = 0; |
@@ -1209,7 +1209,7 @@ int gzip_main(int argc, char **argv) | |||
1209 | inFileNum = STDIN_FILENO; | 1209 | inFileNum = STDIN_FILENO; |
1210 | outFileNum = STDOUT_FILENO; | 1210 | outFileNum = STDOUT_FILENO; |
1211 | } else { | 1211 | } else { |
1212 | inFileNum = bb_xopen3(argv[i], O_RDONLY, 0); | 1212 | inFileNum = xopen3(argv[i], O_RDONLY, 0); |
1213 | if (fstat(inFileNum, &statBuf) < 0) | 1213 | if (fstat(inFileNum, &statBuf) < 0) |
1214 | bb_perror_msg_and_die("%s", argv[i]); | 1214 | bb_perror_msg_and_die("%s", argv[i]); |
1215 | time_stamp = statBuf.st_ctime; | 1215 | time_stamp = statBuf.st_ctime; |