Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
liblongpath-rsync
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
liblongpath
liblongpath-rsync
Commits
243c995f
Commit
243c995f
authored
Jan 21, 2006
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow the -x option to be repeated.
parent
96b87581
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
options.c
options.c
+9
-2
No files found.
options.c
View file @
243c995f
...
...
@@ -425,7 +425,7 @@ static struct poptOption long_options[] = {
{
"chmod"
,
0
,
POPT_ARG_STRING
,
&
chmod_mode
,
0
,
0
,
0
},
{
"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
,
&
one_file_system
,
0
,
0
,
0
},
{
"one-file-system"
,
'x'
,
POPT_ARG_NONE
,
0
,
'x'
,
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
},
...
...
@@ -891,6 +891,10 @@ int parse_arguments(int *argc, const char ***argv, int frommain)
quiet
++
;
break
;
case
'x'
:
one_file_system
++
;
break
;
case
OPT_SENDER
:
if
(
!
am_server
)
{
usage
(
FERROR
);
...
...
@@ -1459,8 +1463,11 @@ void server_options(char **args,int *argc)
argstr
[
x
++
]
=
'I'
;
if
(
relative_paths
)
argstr
[
x
++
]
=
'R'
;
if
(
one_file_system
)
if
(
one_file_system
)
{
argstr
[
x
++
]
=
'x'
;
if
(
one_file_system
>
1
)
argstr
[
x
++
]
=
'x'
;
}
if
(
sparse_files
)
argstr
[
x
++
]
=
'S'
;
if
(
do_compression
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment