From: David Dykstra Date: Tue, 15 Jan 2002 21:25:55 +0000 (+0000) Subject: Aack! Since released version 2.5.0, the --whole-file option was accidentally X-Git-Url: https://mattmccutchen.net/rsync/rsync.git/commitdiff_plain/759c0627e1cf7638371e9143a8d33c8677a634f2 Aack! Since released version 2.5.0, the --whole-file option was accidentally changed to --whole. Change it back. Anybody who wants to use this option with any version of rsync will have to switch to using -W. --- diff --git a/options.c b/options.c index b79dffec..66c2d0c2 100644 --- a/options.c +++ b/options.c @@ -293,7 +293,7 @@ static struct poptOption long_options[] = { {"update", 'u', POPT_ARG_NONE, &update_only}, {"links", 'l', POPT_ARG_NONE, &preserve_links}, {"copy-links", 'L', POPT_ARG_NONE, ©_links}, - {"whole", 'W', POPT_ARG_NONE, &whole_file}, + {"whole-file", 'W', POPT_ARG_NONE, &whole_file}, {"copy-unsafe-links", 0, POPT_ARG_NONE, ©_unsafe_links}, {"perms", 'p', POPT_ARG_NONE, &preserve_perms}, {"owner", 'o', POPT_ARG_NONE, &preserve_uid},