From e50d8921980602c5569b31dd9d12a24b43a196e8 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 23 Jan 2024 06:54:13 +0100 Subject: Merging upstream version 1.13~rc1. Signed-off-by: Daniel Baumann --- zcat.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'zcat.cc') diff --git a/zcat.cc b/zcat.cc index dc5099b..4ac2866 100644 --- a/zcat.cc +++ b/zcat.cc @@ -94,8 +94,8 @@ void show_help() "file given is compressed, its decompressed content is copied. If a file\n" "given does not exist, and its name does not end with one of the known\n" "extensions, zcat tries the compressed file names corresponding to the\n" - "formats supported. If a file fails to decompress, zcat continues copying the\n" - "rest of the files.\n" + "formats supported until one is found. If a file fails to decompress, zcat\n" + "continues copying the rest of the files.\n" "\nIf a file is specified as '-', data are read from standard input,\n" "decompressed if needed, and sent to standard output. Data read from\n" "standard input must be of the same type; all uncompressed or all in the\n" @@ -345,7 +345,7 @@ int main( const int argc, const char * const argv[] ) case lz_opt: parse_compressor( arg, pn, fmt_lz, 1 ); break; case xz_opt: parse_compressor( arg, pn, fmt_xz, 1 ); break; case zst_opt: parse_compressor( arg, pn, fmt_zst, 1 ); break; - default : internal_error( "uncaught option." ); + default: internal_error( "uncaught option." ); } } // end process options -- cgit v1.2.3