Commit 1b81f797 authored by Wayne Davison's avatar Wayne Davison

Fixed a problem with the output of %f for non-daemon rsyncs.

parent 889ae39d
......@@ -525,7 +525,7 @@ static void log_formatted(enum logcode code, const char *format, const char *op,
n = c;
} else
n = buf2;
} else if (*c != '/') {
} else if (am_daemon && *c != '/') {
pathjoin(buf2, sizeof buf2,
curr_dir + module_dirlen, c);
clean_fname(buf2, 0);
......
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