Fix a logic error, the old bunzip code returned non-zero for success,

new code returns 0 for success.
This commit is contained in:
Glenn L McGrath 2003-10-28 23:04:50 +00:00
parent e81fc5fb30
commit debb21ece7

View File

@ -83,7 +83,7 @@ int bunzip2_main(int argc, char **argv)
dst_fd = bb_xopen(save_name, O_WRONLY | O_CREAT);
}
if (uncompressStream(src_fd, dst_fd)) {
if (uncompressStream(src_fd, dst_fd) == 0) {
if (!(flags & bunzip_to_stdout)) {
delete_name = argv[optind];
}