summaryrefslogtreecommitdiff
path: root/support
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2006-09-18 00:13:50 +0000
committerWayne Davison <wayned@samba.org>2006-09-18 00:13:50 +0000
commit30cd7ec1cfc46e8185d5a7a8444ce72eeee5adcb (patch)
tree66bc1a9c0311c33b8126cb436f574458e4ae0b94 /support
parent48459ba15c9822677d74fdc3cd46c73f15c56427 (diff)
downloadrsync-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-xsupport/cull_options2
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";