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
1ed3f5ed
Commit
1ed3f5ed
authored
Jul 03, 2006
by
Wayne Davison
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added the "munge symlinks" setting.
parent
70c81b0c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
loadparm.c
loadparm.c
+4
-0
No files found.
loadparm.c
View file @
1ed3f5ed
...
@@ -153,6 +153,7 @@ typedef struct
...
@@ -153,6 +153,7 @@ typedef struct
BOOL
ignore_errors
;
BOOL
ignore_errors
;
BOOL
ignore_nonreadable
;
BOOL
ignore_nonreadable
;
BOOL
list
;
BOOL
list
;
BOOL
munge_symlinks
;
BOOL
read_only
;
BOOL
read_only
;
BOOL
strict_modes
;
BOOL
strict_modes
;
BOOL
transfer_logging
;
BOOL
transfer_logging
;
...
@@ -200,6 +201,7 @@ static service sDefault =
...
@@ -200,6 +201,7 @@ static service sDefault =
/* ignore_errors; */
False
,
/* ignore_errors; */
False
,
/* ignore_nonreadable; */
False
,
/* ignore_nonreadable; */
False
,
/* list; */
True
,
/* list; */
True
,
/* munge_symlinks; */
False
,
/* read_only; */
True
,
/* read_only; */
True
,
/* strict_modes; */
True
,
/* strict_modes; */
True
,
/* transfer_logging; */
False
,
/* transfer_logging; */
False
,
...
@@ -313,6 +315,7 @@ static struct parm_struct parm_table[] =
...
@@ -313,6 +315,7 @@ static struct parm_struct parm_table[] =
{
"log format"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
log_format
,
NULL
,
0
},
{
"log format"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
log_format
,
NULL
,
0
},
{
"max connections"
,
P_INTEGER
,
P_LOCAL
,
&
sDefault
.
max_connections
,
NULL
,
0
},
{
"max connections"
,
P_INTEGER
,
P_LOCAL
,
&
sDefault
.
max_connections
,
NULL
,
0
},
{
"max verbosity"
,
P_INTEGER
,
P_LOCAL
,
&
sDefault
.
max_verbosity
,
NULL
,
0
},
{
"max verbosity"
,
P_INTEGER
,
P_LOCAL
,
&
sDefault
.
max_verbosity
,
NULL
,
0
},
{
"munge symlinks"
,
P_BOOL
,
P_LOCAL
,
&
sDefault
.
munge_symlinks
,
NULL
,
0
},
{
"name"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
name
,
NULL
,
0
},
{
"name"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
name
,
NULL
,
0
},
{
"outgoing chmod"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
outgoing_chmod
,
NULL
,
0
},
{
"outgoing chmod"
,
P_STRING
,
P_LOCAL
,
&
sDefault
.
outgoing_chmod
,
NULL
,
0
},
{
"path"
,
P_PATH
,
P_LOCAL
,
&
sDefault
.
path
,
NULL
,
0
},
{
"path"
,
P_PATH
,
P_LOCAL
,
&
sDefault
.
path
,
NULL
,
0
},
...
@@ -415,6 +418,7 @@ FN_LOCAL_INTEGER(lp_timeout, timeout)
...
@@ -415,6 +418,7 @@ FN_LOCAL_INTEGER(lp_timeout, timeout)
FN_LOCAL_BOOL
(
lp_ignore_errors
,
ignore_errors
)
FN_LOCAL_BOOL
(
lp_ignore_errors
,
ignore_errors
)
FN_LOCAL_BOOL
(
lp_ignore_nonreadable
,
ignore_nonreadable
)
FN_LOCAL_BOOL
(
lp_ignore_nonreadable
,
ignore_nonreadable
)
FN_LOCAL_BOOL
(
lp_list
,
list
)
FN_LOCAL_BOOL
(
lp_list
,
list
)
FN_LOCAL_BOOL
(
lp_munge_symlinks
,
munge_symlinks
)
FN_LOCAL_BOOL
(
lp_read_only
,
read_only
)
FN_LOCAL_BOOL
(
lp_read_only
,
read_only
)
FN_LOCAL_BOOL
(
lp_strict_modes
,
strict_modes
)
FN_LOCAL_BOOL
(
lp_strict_modes
,
strict_modes
)
FN_LOCAL_BOOL
(
lp_transfer_logging
,
transfer_logging
)
FN_LOCAL_BOOL
(
lp_transfer_logging
,
transfer_logging
)
...
...
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