From: Wayne Davison Date: Thu, 26 Aug 2010 14:58:22 +0000 (-0700) Subject: Remove duplication for -x option. X-Git-Tag: v3.0.8pre1~48 X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=de20d72541d0059218dd17fa20ca761a8cf00523;p=rsync.git Remove duplication for -x option. --- diff --git a/options.c b/options.c index b428ce83..c01d71c9 100644 --- a/options.c +++ b/options.c @@ -530,8 +530,8 @@ static struct poptOption long_options[] = { {"ignore-times", 'I', POPT_ARG_NONE, &ignore_times, 0, 0, 0 }, {"size-only", 0, POPT_ARG_NONE, &size_only, 0, 0, 0 }, {"one-file-system", 'x', POPT_ARG_NONE, 0, 'x', 0, 0 }, - {"no-one-file-system",'x',POPT_ARG_VAL, &one_file_system, 0, 0, 0 }, - {"no-x", 'x', POPT_ARG_VAL, &one_file_system, 0, 0, 0 }, + {"no-one-file-system",0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 }, + {"no-x", 0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 }, {"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 }, {"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 }, {"ignore-non-existing",0,POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },