From 759c0627e1cf7638371e9143a8d33c8677a634f2 Mon Sep 17 00:00:00 2001 From: David Dykstra Date: Tue, 15 Jan 2002 21:25:55 +0000 Subject: [PATCH] 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. --- options.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}, -- 2.34.1