From c0ab28d1d9bf3ba10822c50a480e4c27ee2af3da Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Wed, 22 Dec 2004 09:10:08 +0000 Subject: [PATCH] If we send --files-from to the remote server and relative-paths are not enabled, we need to also send --no-relative. --- options.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/options.c b/options.c index e79f56f9..70e210dc 100644 --- a/options.c +++ b/options.c @@ -1236,6 +1236,8 @@ void server_options(char **args,int *argc) args[ac++] = "--files-from=-"; args[ac++] = "--from0"; } + if (!relative_paths) + args[ac++] = "--no-relative"; } *argc = ac; -- 2.34.1