mirror of
https://github.com/RsyncProject/rsync.git
synced 2026-05-24 06:45:27 -04:00
Change the way we pass the --suffix option to the remote process so
that a string that starts with ~ doesn't get modified.
This commit is contained in:
@@ -826,8 +826,12 @@ void server_options(char **args,int *argc)
|
||||
|
||||
/* Only send --suffix if it specifies a non-default value. */
|
||||
if (strcmp(backup_suffix, backup_dir? "" : BACKUP_SUFFIX) != 0) {
|
||||
args[ac++] = "--suffix";
|
||||
args[ac++] = backup_suffix;
|
||||
char *s = malloc(9+backup_suffix_len+1);
|
||||
if (!s)
|
||||
out_of_memory("server_options");
|
||||
/* We use the following syntax to avoid weirdness with '~'. */
|
||||
sprintf(s, "--suffix=%s", backup_suffix);
|
||||
args[ac++] = s;
|
||||
}
|
||||
|
||||
if (delete_mode && !delete_excluded)
|
||||
|
||||
Reference in New Issue
Block a user