diff options
author | Wayne Davison <wayned@samba.org> | 2007-09-16 02:42:55 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2007-09-16 02:42:55 +0000 |
commit | 2e8259bb0bc5ffe64df9075ef8f1e8050caf951c (patch) | |
tree | 0994e922c55b1f1626724127a505966dbcf469ac /support | |
parent | d2745243172544475e1bb337e798229411a5f52f (diff) | |
download | rsync-2e8259bb0bc5ffe64df9075ef8f1e8050caf951c.tar.gz |
Disable -s by default.
Diffstat (limited to 'support')
-rwxr-xr-x | support/cull_options | 2 | ||||
-rw-r--r-- | support/rrsync | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/support/cull_options b/support/cull_options index 914177e6..ab16238c 100755 --- a/support/cull_options +++ b/support/cull_options @@ -44,7 +44,7 @@ print <<EOT; # and only in the option format that the stock rsync produces. # To disable a short-named option, add its letter to this string: -our \$short_disabled = ''; +our \$short_disabled = 's'; our \$short_no_arg = '$short_no_arg'; # DO NOT REMOVE ANY our \$short_with_num = '$short_with_num'; # DO NOT REMOVE ANY diff --git a/support/rrsync b/support/rrsync index da6e5536..6a2e5b0b 100644 --- a/support/rrsync +++ b/support/rrsync @@ -48,7 +48,7 @@ die "$0 -ro: sending to read-only server not allowed\n" if $ro && !$am_sender; # and only in the option format that the stock rsync produces. # To disable a short-named option, add its letter to this string: -our $short_disabled = ''; +our $short_disabled = 's'; our $short_no_arg = 'ACDEHIKLORSWXbcdgklmnoprtuvxz'; # DO NOT REMOVE ANY our $short_with_num = 'B'; # DO NOT REMOVE ANY |