X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/blobdiff_plain/42a28d9d3a57471cb1409570cf68da9f98a95b76..0b52f94da727c4881b58c1cd6f2cf2a824e02b30:/main.c diff --git a/main.c b/main.c index 649f2ef6..b8bbf5cf 100644 --- a/main.c +++ b/main.c @@ -45,6 +45,7 @@ extern int got_xfer_error; extern int module_id; extern int copy_links; extern int copy_dirlinks; +extern int copy_unsafe_links; extern int keep_dirlinks; extern int preserve_hard_links; extern int protocol_version; @@ -759,7 +760,7 @@ static int do_recv(int f_in, int f_out, char *local_name) /* The receiving side mustn't obey this, or an existing symlink that * points to an identical file won't be replaced by the referent. */ - copy_links = copy_dirlinks = 0; + copy_links = copy_dirlinks = copy_unsafe_links = 0; #ifdef SUPPORT_HARD_LINKS if (preserve_hard_links && !inc_recurse)