Commit c0ab28d1 authored by Wayne Davison's avatar Wayne Davison

If we send --files-from to the remote server and relative-paths

are not enabled, we need to also send --no-relative.
parent 5b2f48da
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment