diff options
author | Günther Deschner <gd@samba.org> | 2009-11-09 16:02:24 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2009-11-09 16:03:38 +0100 |
commit | 8eac3075b604d5d0938e2a087a154bb6546d78b1 (patch) | |
tree | d53ab42101b2cdddeaab4f76baa1f6d7003381df /source3/param/loadparm.c | |
parent | e6df4c2bc28b9204cf0637575b0289657e604830 (diff) | |
download | samba-8eac3075b604d5d0938e2a087a154bb6546d78b1.tar.gz samba-8eac3075b604d5d0938e2a087a154bb6546d78b1.tar.xz samba-8eac3075b604d5d0938e2a087a154bb6546d78b1.zip |
s3-param: fix set_inherit_acls().
Jeremy, please check.
Guenther
Diffstat (limited to 'source3/param/loadparm.c')
-rw-r--r-- | source3/param/loadparm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index b317dc6c8a7..9a0f834f99a 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -9850,4 +9850,6 @@ bool set_inherit_acls(int i) return false; } ServicePtrs[(i)]->bInheritACLS = true; + + return true; } |