Commit 120cde95 authored by Wayne Davison's avatar Wayne Davison

Avoid forwarding the --temp-dir option to the server when we're

the receiver.
parent e6ffb966
......@@ -1684,7 +1684,7 @@ void server_options(char **args,int *argc)
else if (inplace)
args[ac++] = "--inplace";
if (tmpdir) {
if (tmpdir && am_sender) {
args[ac++] = "--temp-dir";
args[ac++] = tmpdir;
}
......
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