- Call init_flist().
authorWayne Davison <wayned@samba.org>
Mon, 2 Feb 2004 21:33:06 +0000 (21:33 +0000)
committerWayne Davison <wayned@samba.org>
Mon, 2 Feb 2004 21:33:06 +0000 (21:33 +0000)
- Got rid of the symbolic-links-warning code (it was not right, and it is
  now handled in options.c).

main.c

diff --git a/main.c b/main.c
index b40922a..03133cf 100644 (file)
--- 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);