summaryrefslogtreecommitdiffstats
path: root/zcat.cc
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-01-23 05:54:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-01-23 05:54:09 +0000
commitb95f39dfdb659097af23465ec2a533a254fd4ac5 (patch)
treec706cd4227ea65ece171824e07a2f5cf98a291b0 /zcat.cc
parentAdding upstream version 1.12. (diff)
downloadzutils-b95f39dfdb659097af23465ec2a533a254fd4ac5.tar.xz
zutils-b95f39dfdb659097af23465ec2a533a254fd4ac5.zip
Adding upstream version 1.13~rc1.upstream/1.13_rc1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'zcat.cc')
-rw-r--r--zcat.cc6
1 files changed, 3 insertions, 3 deletions
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