From 5454d22ad8b63f00aa0b64d8568f2781e31a382b Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 29 Jan 2005 21:25:44 +0000 Subject: [PATCH] The --dirs was sending -k instead of -d. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/options.c b/options.c index 3611e134..9aa0c261 100644 --- a/options.c +++ b/options.c @@ -1126,7 +1126,7 @@ void server_options(char **args,int *argc) if (copy_links) argstr[x++] = 'L'; if (xfer_dirs > 1) - argstr[x++] = 'k'; + argstr[x++] = 'd'; if (keep_dirlinks && am_sender) argstr[x++] = 'K'; -- 2.34.1