search for: short_with_num

Displaying 2 results from an estimated 2 matches for "short_with_num".

2009 Jan 07
1
DO NOT REPLY [Bug 6020] New: support/rrsync fails when server-side options include "-e."
...n the other hand, if you try "rsync file rem:." on the client side, the arguments on the server look like this: "--server -e.Ls . .", and it fails. I believe the problem is on line 147 of support/rrsync. If I change it from next if /^-$short_no_arg+(e\d*\.\w*)?$/o || /^-$short_with_num\d+$/o; to next if /^-$short_no_arg*(e\d*\.\w*)?$/o || /^-$short_with_num\d+$/o; the problem appears to go away. Thanks, George -- Configure bugmail: https://bugzilla.samba.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug,...
2014 Sep 02
1
[PATCH] rrsync: Add several long options used by BackupPC
...tions when run under BackupPC 3.2.1, with this patch full and incremental backups work. --- support/rrsync | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/support/rrsync b/support/rrsync index 6f83f9d..c231ea3 100644 --- a/support/rrsync +++ b/support/rrsync @@ -60,6 +60,7 @@ our $short_with_num = 'B'; # DO NOT REMOVE ANY our %long_opt = ( 'append' => 0, 'backup-dir' => 2, + 'block-size' => 1, 'bwlimit' => 1, 'checksum-seed' => 1, 'compare-dest' => 2, @@ -82,15 +83,19 @@ our %long_opt = ( 'for...