diff options
author | Wayne Davison <wayned@samba.org> | 2006-07-03 22:33:49 +0000 |
---|---|---|
committer | Wayne Davison <wayned@samba.org> | 2006-07-03 22:33:49 +0000 |
commit | 1ed3f5ed619b61f86007413a6c2420ddd55176f7 (patch) | |
tree | 6553d8c88039556161b65cfec8f84195b48cda59 /loadparm.c | |
parent | 70c81b0c07e0442b07b3fe30680063baf6fafe33 (diff) | |
download | rsync-1ed3f5ed619b61f86007413a6c2420ddd55176f7.tar.gz rsync-1ed3f5ed619b61f86007413a6c2420ddd55176f7.tar.bz2 rsync-1ed3f5ed619b61f86007413a6c2420ddd55176f7.zip |
Added the "munge symlinks" setting.
Diffstat (limited to 'loadparm.c')
-rw-r--r-- | loadparm.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -153,6 +153,7 @@ typedef struct BOOL ignore_errors; BOOL ignore_nonreadable; BOOL list; + BOOL munge_symlinks; BOOL read_only; BOOL strict_modes; BOOL transfer_logging; @@ -200,6 +201,7 @@ static service sDefault = /* ignore_errors; */ False, /* ignore_nonreadable; */ False, /* list; */ True, + /* munge_symlinks; */ False, /* read_only; */ True, /* strict_modes; */ True, /* transfer_logging; */ False, @@ -313,6 +315,7 @@ static struct parm_struct parm_table[] = {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL,0}, {"max connections", P_INTEGER,P_LOCAL, &sDefault.max_connections, 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}, {"outgoing chmod", P_STRING, P_LOCAL, &sDefault.outgoing_chmod, NULL,0}, {"path", P_PATH, P_LOCAL, &sDefault.path, NULL,0}, @@ -415,6 +418,7 @@ FN_LOCAL_INTEGER(lp_timeout, timeout) FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors) FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable) 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_strict_modes, strict_modes) FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging) |