From 95a44066da8ffc6c37f2c05f2225ae9f2dcf4caf Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 9 Sep 2007 07:53:08 +0000 Subject: [PATCH] Call the renamed read_line() function (was read_filesfrom_line()). --- flist.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flist.c b/flist.c index 4f3e25ad..688117c9 100644 --- a/flist.c +++ b/flist.c @@ -52,6 +52,7 @@ extern int preserve_devices; extern int preserve_specials; extern int uid_ndx; extern int gid_ndx; +extern int eol_nulls; extern int relative_paths; extern int implied_dirs; extern int file_extra_cnt; @@ -63,6 +64,7 @@ extern int copy_unsafe_links; extern int protocol_version; extern int sanitize_paths; extern struct stats stats; +extern char *filesfrom_host; extern char curr_dir[MAXPATHLEN]; @@ -1641,6 +1643,8 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) int64 start_write; int use_ff_fd = 0; int flags, disable_buffering; + int reading_remotely = filesfrom_host != NULL; + int rl_nulls = eol_nulls || reading_remotely; rprintf(FLOG, "building file list\n"); if (show_filelist_p()) @@ -1681,7 +1685,7 @@ struct file_list *send_file_list(int f, int argc, char *argv[]) int is_dot_dir; if (use_ff_fd) { - if (read_filesfrom_line(filesfrom_fd, fbuf) == 0) + if (read_line(filesfrom_fd, fbuf, sizeof fbuf, !reading_remotely, rl_nulls) == 0) break; sanitize_path(fbuf, fbuf, "", 0, NULL); } else { -- 2.34.1