mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
--sort should not imply --join if --trace is also specified.
This commit is contained in:
parent
aa7ed3d8c8
commit
ab12babf06
@ -81,7 +81,7 @@ BEGIN {
|
||||
usage() unless $getopt_ok;
|
||||
usage("--trace is incompatible with --join.\n") if $trace && $join_files;
|
||||
|
||||
$join_files = 1 if $sort_files && !defined($join_files);
|
||||
$join_files = 1 if !defined($join_files) && $sort_files && !$trace;
|
||||
use constant BRIEF => !!$brief;
|
||||
use constant LOOSE => defined($no_loose) && ($no_loose eq ".^" ? 2 : 1);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user