Fail silently if a partial tar header is read as tar.bz2 is leaving trailing junk (not sure why), add some missing files
diff --git a/archival/tar.c b/archival/tar.c
index e1e121a..95ef33b 100644
--- a/archival/tar.c
+++ b/archival/tar.c
@@ -748,8 +748,7 @@
 #endif /* CONFIG_FEATURE_TAR_GZIP */
 #ifdef CONFIG_FEATURE_TAR_BZIP2
 		if (tar_handle->read == read_bz2) {
-			BZ2_bzReadOpen(tar_handle->src_fd, NULL, 0);
-			while (get_header_tar(tar_handle) == EXIT_SUCCESS);
+			get_header_tar_bz2(tar_handle);
 		} else
 #endif /* CONFIG_FEATURE_TAR_BZIP2 */