Skip to content

Commit 8b48c68

Browse files
author
Wayne Davison
committed
Remove duplication for -x option.
1 parent aff4850 commit 8b48c68

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

options.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -889,8 +889,8 @@ static struct poptOption long_options[] = {
889889
{"ignore-times", 'I', POPT_ARG_NONE, &ignore_times, 0, 0, 0 },
890890
{"size-only", 0, POPT_ARG_NONE, &size_only, 0, 0, 0 },
891891
{"one-file-system", 'x', POPT_ARG_NONE, 0, 'x', 0, 0 },
892-
{"no-one-file-system",'x',POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
893-
{"no-x", 'x', POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
892+
{"no-one-file-system",0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
893+
{"no-x", 0, POPT_ARG_VAL, &one_file_system, 0, 0, 0 },
894894
{"update", 'u', POPT_ARG_NONE, &update_only, 0, 0, 0 },
895895
{"existing", 0, POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },
896896
{"ignore-non-existing",0,POPT_ARG_NONE, &ignore_non_existing, 0, 0, 0 },

0 commit comments

Comments
 (0)