Commit 54b40598 authored by Wayne Davison's avatar Wayne Davison

Needed to call safe_fname() when listing the remote names.

parent 38059f8e
......@@ -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)));
}
}
......
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