From dc7a947853cf5f8edf5afb57babc634451b60e6b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 30 Dec 1997 10:54:47 +0000 Subject: [PATCH] fixed the --suffix option. It wasn't being propogated to the remote end in the server_options() function. --- main.c | 5 +++++ 1 file changed, 5 insertions(+) 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"; -- 2.34.1