From 54e87b4b0668b6a6157f9ae17a404818761e7e50 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Mon, 2 Feb 2004 21:33:10 +0000 Subject: [PATCH] Don't warn about lack of -l support if we're the sender -- we just won't send the receiver any symlinks. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"); -- 2.34.1