Don't allow a slash to be specified in a module name.
[rsync/rsync.git] / support / cull_options
index 914177e..c85a036 100755 (executable)
@@ -33,8 +33,6 @@ while (<IN>) {
 }
 close IN;
 
-$short_no_arg{'s'} = 1;
-
 my $short_no_arg = join('', sort keys %short_no_arg);
 my $short_with_num = join('', sort keys %short_with_num);
 
@@ -44,7 +42,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