From 44e9e221f3c36df43cf22a9f2407de12cfbf9a99 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 2 Feb 2004 21:33:06 +0000 Subject: [PATCH] - Call init_flist(). - Got rid of the symbolic-links-warning code (it was not right, and it is now handled in options.c). --- main.c | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/main.c b/main.c index b40922a2..03133cf1 100644 --- a/main.c +++ b/main.c @@ -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); -- 2.34.1