From: Wayne Davison Date: Mon, 2 Feb 2004 21:33:10 +0000 (+0000) Subject: Don't warn about lack of -l support if we're the sender -- we just won't X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/54e87b4b0668b6a6157f9ae17a404818761e7e50 Don't warn about lack of -l support if we're the sender -- we just won't send the receiver any symlinks. --- diff --git a/options.c b/options.c index 884165e8..ce51386d 100644 --- a/options.c +++ b/options.c @@ -581,7 +581,7 @@ int parse_arguments(int *argc, const char ***argv, int frommain) } #if !SUPPORT_LINKS - if (preserve_links) { + if (preserve_links && !am_sender) { snprintf(err_buf, sizeof err_buf, "symlinks are not supported on this %s\n", am_server ? "server" : "client");