style fix, no code changes

This commit is contained in:
Denis Vlasenko 2007-09-09 14:11:11 +00:00
parent bf8fcaceb7
commit 476b070036
4 changed files with 7 additions and 4 deletions

View File

@ -13,7 +13,8 @@ char get_header_tar_bz2(archive_handle_t *archive_handle)
archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_bz2_stream, "bunzip2", "bunzip2", "-cf", "-", NULL); archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_bz2_stream, "bunzip2", "bunzip2", "-cf", "-", NULL);
archive_handle->offset = 0; archive_handle->offset = 0;
while (get_header_tar(archive_handle) == EXIT_SUCCESS) /**/; while (get_header_tar(archive_handle) == EXIT_SUCCESS)
continue;
/* Can only do one file at a time */ /* Can only do one file at a time */
return EXIT_FAILURE; return EXIT_FAILURE;

View File

@ -29,7 +29,8 @@ char get_header_tar_gz(archive_handle_t *archive_handle)
archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_gz_stream, "gunzip", "gunzip", "-cf", "-", NULL); archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_gz_stream, "gunzip", "gunzip", "-cf", "-", NULL);
archive_handle->offset = 0; archive_handle->offset = 0;
while (get_header_tar(archive_handle) == EXIT_SUCCESS) /**/; while (get_header_tar(archive_handle) == EXIT_SUCCESS)
continue;
/* Can only do one file at a time */ /* Can only do one file at a time */
return EXIT_FAILURE; return EXIT_FAILURE;

View File

@ -16,7 +16,8 @@ char get_header_tar_lzma(archive_handle_t * archive_handle)
archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_lzma_stream, "unlzma", "unlzma", "-cf", "-", NULL); archive_handle->src_fd = open_transformer(archive_handle->src_fd, unpack_lzma_stream, "unlzma", "unlzma", "-cf", "-", NULL);
archive_handle->offset = 0; archive_handle->offset = 0;
while (get_header_tar(archive_handle) == EXIT_SUCCESS) /**/; while (get_header_tar(archive_handle) == EXIT_SUCCESS)
continue;
/* Can only do one file at a time */ /* Can only do one file at a time */
return EXIT_FAILURE; return EXIT_FAILURE;

View File

@ -663,7 +663,7 @@ static char get_header_tar_Z(archive_handle_t *archive_handle)
archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress, "uncompress", "uncompress", "-cf", "-", NULL); archive_handle->src_fd = open_transformer(archive_handle->src_fd, uncompress, "uncompress", "uncompress", "-cf", "-", NULL);
archive_handle->offset = 0; archive_handle->offset = 0;
while (get_header_tar(archive_handle) == EXIT_SUCCESS) while (get_header_tar(archive_handle) == EXIT_SUCCESS)
/* nothing */; continue;
/* Can only do one file at a time */ /* Can only do one file at a time */
return EXIT_FAILURE; return EXIT_FAILURE;