diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-12-09 04:37:50 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-12-09 04:37:50 +0000 |
commit | 785682065c25d6006c9196b7ccf0ba1c3bfd20e4 (patch) | |
tree | 29efb1a137901fb4334b8f9641a84d54d758ed3c /zgrep.cc | |
parent | Releasing debian version 1.13-3. (diff) | |
download | zutils-785682065c25d6006c9196b7ccf0ba1c3bfd20e4.tar.xz zutils-785682065c25d6006c9196b7ccf0ba1c3bfd20e4.zip |
Merging upstream version 1.14~rc1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | zgrep.cc | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -244,7 +244,7 @@ int main( const int argc, const char * const argv[] ) { 'h', "no-filename", Arg_parser::no }, // grep GNU { 'H', "with-filename", Arg_parser::no }, // grep GNU { 'i', "ignore-case", Arg_parser::no }, // grep - { 'I', 0, Arg_parser::no }, // grep GNU + { 'I', 0, Arg_parser::no }, // grep GNU { 'l', "files-with-matches", Arg_parser::no }, // grep { 'L', "files-without-match", Arg_parser::no }, // grep GNU { 'm', "max-count", Arg_parser::yes }, // grep GNU @@ -276,7 +276,7 @@ int main( const int argc, const char * const argv[] ) { lz_opt, "lz", Arg_parser::yes }, { xz_opt, "xz", Arg_parser::yes }, { zst_opt, "zst", Arg_parser::yes }, - { 0, 0, Arg_parser::no } }; + { 0, 0, Arg_parser::no } }; const Arg_parser parser( argc, argv, options ); if( parser.error().size() ) // bad option @@ -381,8 +381,8 @@ int main( const int argc, const char * const argv[] ) int retval = 1; bool error = false; bool stdin_used = false; - while( next_filename( filenames, input_filename, error, recursive, - false, no_messages ) ) + while( next_filename( filenames, input_filename, error, recursive, false, + no_messages ) ) { int infd; if( input_filename == "." ) |