Commit 44e9e221 authored by Wayne Davison's avatar Wayne Davison

- Call init_flist().

- Got rid of the symbolic-links-warning code (it was not right, and it is
  now handled in options.c).
parent 61dec11a
......@@ -1013,6 +1013,8 @@ int main(int argc,char *argv[])
* that implement getcwd that way "pwd" can't be found after chroot. */
push_dir(NULL);
init_flist();
if (write_batch && !am_server) {
write_batch_argvs_file(orig_argc, orig_argv);
}
......@@ -1028,13 +1030,6 @@ int main(int argc,char *argv[])
if (dry_run)
verbose = MAX(verbose,1);
#ifndef SUPPORT_LINKS
if (!am_server && preserve_links) {
rprintf(FERROR,"ERROR: symbolic links not supported\n");
exit_cleanup(RERR_UNSUPPORTED);
}
#endif
if (am_server) {
set_nonblocking(STDIN_FILENO);
set_nonblocking(STDOUT_FILENO);
......
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