From 1b81f797a2c12b6a4e34250451ed791ab0065e0e Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 23 Dec 2006 20:48:29 +0000 Subject: [PATCH] Fixed a problem with the output of %f for non-daemon rsyncs. --- log.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log.c b/log.c index d5308b2f..8fe47444 100644 --- a/log.c +++ b/log.c @@ -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); -- 2.34.1