diff options
author | Jeremy Allison <jra@samba.org> | 2009-11-11 18:35:18 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2009-11-11 18:35:18 -0800 |
commit | a8769e667514f83a45ee3e825d21a351987d0210 (patch) | |
tree | 41884f33c324380f3637420eb1ff5bf8151406d0 /source3/param | |
parent | 8995d3d813978a00b50f33943c60784ddfe308bf (diff) | |
download | samba-a8769e667514f83a45ee3e825d21a351987d0210.tar.gz |
Second part of bugfix for 6865 - acl_xattr module: Has dependency that inherit acls = yes or xattrs are removed.
We also need dos filemode = true set as well.
Jeremy.
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 9a0f834f99a..c62deb5eda5 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -9843,13 +9843,3 @@ void lp_set_passdb_backend(const char *backend) { string_set(&Globals.szPassdbBackend, backend); } - -bool set_inherit_acls(int i) -{ - if (!LP_SNUM_OK(i)) { - return false; - } - ServicePtrs[(i)]->bInheritACLS = true; - - return true; -} |