From: Andrew Tridgell Date: Tue, 30 Dec 1997 10:54:47 +0000 (+0000) Subject: fixed the --suffix option. It wasn't being propogated to the remote X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/dc7a947853cf5f8edf5afb57babc634451b60e6b fixed the --suffix option. It wasn't being propogated to the remote end in the server_options() function. --- diff --git a/main.c b/main.c index 88d28d70..837d3097 100644 --- a/main.c +++ b/main.c @@ -158,6 +158,11 @@ static void server_options(char **args,int *argc) args[ac++] = bsize; } + if (strcmp(backup_suffix, BACKUP_SUFFIX)) { + args[ac++] = "--suffix"; + args[ac++] = backup_suffix; + } + if (delete_mode) args[ac++] = "--delete";