X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/eb9b2e53c8d966f356454f1ba70ea5901674fedf..4875d6b64dd0ed8d451746cc0cc609cff36192bd:/flist.c diff --git a/flist.c b/flist.c index 2ded8e6e..0e81e9ec 100644 --- a/flist.c +++ b/flist.c @@ -153,14 +153,14 @@ static void list_file_entry(struct file_struct *f) rprintf(FINFO, "%s %11.0f %s %s -> %s\n", perms, (double)f->length, timestring(f->modtime), - f_name(f), f->u.link); + safe_fname(f_name(f)), f->u.link); } else #endif { rprintf(FINFO, "%s %11.0f %s %s\n", perms, (double)f->length, timestring(f->modtime), - f_name(f)); + safe_fname(f_name(f))); } }