diff options
author | Wayne Davison <wayned@samba.org> | 2006-09-18 00:13:50 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-09-18 00:13:50 +0000 |
commit | 30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb (patch) | |
tree | 66bc1a9c0311c33b8126cb436f574458e4ae0b94 /support | |
parent | 48459ba15c9822677d74fdc3cd46c73f15c56427 (diff) | |
download | rsync-30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb.tar.gz rsync-30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb.tar.bz2 rsync-30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb.zip |
The --min-size arg doesn't need to be path-checked either.
Diffstat (limited to 'support')
-rwxr-xr-x | support/cull_options | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/support/cull_options b/support/cull_options index 5e31cb0a..07a57021 100755 --- a/support/cull_options +++ b/support/cull_options @@ -55,7 +55,7 @@ EOT foreach my $opt (sort keys %long_opt) { my $val = $long_opt{$opt}; - $val = 1 if $opt =~ /^max-/; + $val = 1 if $opt =~ /^(max-|min-)/; $val = 3 if $opt eq 'files-from'; $val = '$ro ? -1 : ' . $val if $opt =~ /^remove-/; print " '$opt' => $val,\n"; |