diff options
author | Jim McDonough <jmcd@samba.org> | 2002-03-12 16:32:25 +0000 |
---|---|---|
committer | Jim McDonough <jmcd@samba.org> | 2002-03-12 16:32:25 +0000 |
commit | b9377e811e44949070f04efe1c1cd389a7c3aef5 (patch) | |
tree | fc5a8f029df118f511ee00f22e3f4843c58f7cb1 /source3/smbd | |
parent | fb361dc5036ecdbe9ec3b11eea45ca98a0826a9b (diff) | |
download | samba-b9377e811e44949070f04efe1c1cd389a7c3aef5.tar.gz samba-b9377e811e44949070f04efe1c1cd389a7c3aef5.tar.bz2 samba-b9377e811e44949070f04efe1c1cd389a7c3aef5.zip |
Missing comma from systems that have ACLs.
(This used to be commit 96e4282dca757e8621d23a54fb7203c93d2d41fc)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/vfs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/vfs.c b/source3/smbd/vfs.c index ac342d0820..8d7ee2b075 100644 --- a/source3/smbd/vfs.c +++ b/source3/smbd/vfs.c @@ -85,7 +85,7 @@ static struct vfs_ops default_vfs_ops = { NULL, #else vfswrap_chmod_acl, - vfswrap_fchmod_acl + vfswrap_fchmod_acl, #endif vfswrap_sys_acl_get_entry, vfswrap_sys_acl_get_tag_type, |