diff options
| author | Wayne Davison <wayned@samba.org> | 2010-08-26 07:58:22 -0700 |
|---|---|---|
| committer | Wayne Davison <wayned@samba.org> | 2010-08-28 18:04:09 -0700 |
| commit | de20d72541d0059218dd17fa20ca761a8cf00523 (patch) | |
| tree | f0bb8e3156bf30836dfada99574834c41b75fb0a | |
| parent | f8cd1c4730f8a7ea4934c6986223d6a50a3ab00c (diff) | |
| download | android_external_rsync-de20d72541d0059218dd17fa20ca761a8cf00523.tar.gz android_external_rsync-de20d72541d0059218dd17fa20ca761a8cf00523.tar.bz2 android_external_rsync-de20d72541d0059218dd17fa20ca761a8cf00523.zip | |
Remove duplication for -x option.
| -rw-r--r-- | options.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 }, |
