From: Wayne Davison Date: Sat, 29 Jan 2005 21:25:44 +0000 (+0000) Subject: The --dirs was sending -k instead of -d. X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/5454d22ad8b63f00aa0b64d8568f2781e31a382b The --dirs was sending -k instead of -d. --- 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';