aboutsummaryrefslogtreecommitdiffstats
path: root/options.c
diff options
context:
space:
mode:
authorWayne Davison <wayned@samba.org>2010-08-26 07:58:22 -0700
committerWayne Davison <wayned@samba.org>2010-08-26 07:58:22 -0700
commit8b48c682855602589519cfc6f6c9598d6e462143 (patch)
treef93ed82d2d4352f54b542e456cca76eb6dcf4f5a /options.c
parentaff4850053a1bbb4cd90201676a01a65082311e1 (diff)
downloadandroid_external_rsync-8b48c682855602589519cfc6f6c9598d6e462143.tar.gz
android_external_rsync-8b48c682855602589519cfc6f6c9598d6e462143.tar.bz2
android_external_rsync-8b48c682855602589519cfc6f6c9598d6e462143.zip
Remove duplication for -x option.
Diffstat (limited to 'options.c')
-rw-r--r--options.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/options.c b/options.c
index e97507cb..dbde289e 100644
--- a/options.c
+++ b/options.c
@@ -889,8 +889,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 },