Added --no-one-file-system and --no-x options.
authorWayne Davison <wayned@samba.org>
Mon, 18 Feb 2008 20:42:04 +0000 (12:42 -0800)
committerWayne Davison <wayned@samba.org>
Mon, 18 Feb 2008 20:42:04 +0000 (12:42 -0800)
options.c

index d12d28a719d842d8af841563c3347ffc5189a75d..eeb2410504898ceec0cd9067599832a1a3a0389e 100644 (file)
--- a/options.c
+++ b/options.c
@@ -524,6 +524,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 },
   {"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 },