summaryrefslogtreecommitdiffstats
path: root/source3/modules/vfs_tru64acl.c
Commit message (Collapse)AuthorAgeFilesLines
* vfs: Use posix_sys_acl_blob_get_file in vfs_tru64acl for posix ACLsAndrew Bartlett2012-10-111-0/+2
|
* smbd: Add mem_ctx to sys_acl_init() and all callersAndrew Bartlett2012-10-111-7/+11
| | | | | | | | | | This changes from allocation on NULL to allocation on the supplied memory context. Currently that supplied context is talloc_tos() at the the final consumer of the ACL. Andrew Bartlett
* s3: fix the tru64 acl moduleBjörn Jacke2012-09-141-5/+5
| | | | This was not adopted to the recent VFS acl structure changes.
* s3-smbd: Change allocation of smb_acl_t to talloc()Andrew Bartlett2012-08-151-12/+9
| | | | | | | | | The acl element is changed to be a talloc child, and is no longer one element longer than requested by virtue of the acl[1] base pointer. This also avoids one of the few remaining cases of over-allocation of a structure. Andrew Bartlett
* vfs: Make function pointer names consistent. They all end in _fnRichard Sharpe2011-12-121-5/+5
| | | | | Autobuild-User: Richard Sharpe <sharpe@samba.org> Autobuild-Date: Mon Dec 12 04:58:40 CET 2011 on sn-devel-104
* s3-includes: only include acl prototypes when needed.Günther Deschner2011-04-141-0/+1
| | | | Guenther
* s3-vfs acl modules: more non-linux build fixes.Günther Deschner2011-03-301-0/+1
| | | | | | | Guenther Autobuild-User: Günther Deschner <gd@samba.org> Autobuild-Date: Wed Mar 30 16:00:02 CEST 2011 on sn-devel-104
* s3-vfs: include smbd/smbd.h in vfs modules.Günther Deschner2011-03-301-0/+1
| | | | Guenther
* Make the smbd VFS typesafeVolker Lendecke2009-07-241-26/+7
|
* Remove redundant parameter fd from SMB_VFS_SYS_ACL_SET_FD().Michael Adam2008-01-081-3/+3
| | | | | Michael (This used to be commit 9296e93588c0e795cae770765050247ac1474a74)
* Remove redundant parameter fd from SMB_VFS_SYS_ACL_GET_FD().Michael Adam2008-01-071-3/+2
| | | | | Michael (This used to be commit 42663e8736e1a3dfb57e0aafdcbf5fec880da779)
* RIP BOOL. Convert BOOL -> bool. I found a few interestingJeremy Allison2007-10-181-2/+2
| | | | | | | | bugs in various places whilst doing this (places that assumed BOOL == int). I also need to fix the Samba4 pidl generation (next checkin). Jeremy. (This used to be commit f35a266b3cbb3e5fa6a86be60f34fe340a3ca71f)
* r23784: use the GPLv3 boilerplate as recommended by the FSF and the license textAndrew Tridgell2007-10-101-2/+1
| | | | (This used to be commit b0132e94fc5fef936aa766fb99a306b3628e9f07)
* r23779: Change from v2 or later to v3 or later.Jeremy Allison2007-10-101-1/+1
| | | | | Jeremy. (This used to be commit 407e6e695b8366369b7c76af1ff76869b45347b3)
* r22918: Attempt to fix the build of the tru64acl module.Michael Adam2007-10-101-6/+6
| | | | | | | | Where the heck did that smb_acl_permset_t come from? I can't remember... Michael (This used to be commit e55f952a1319de8743ddfe4993cc4c798b7aa725)
* r20261: merge 20260 from samba_3_0_24Herb Lewis2007-10-101-0/+1
| | | | | clean up a bunch of no previous prototype warnings (This used to be commit c60687db112405262adf26dbf267804b04074e67)
* r17179: Merge the vl-posixacls tmp branch into mainline. ItJim McDonough2007-10-101-0/+504
modularizes our interface into the special posix API used on the system. Without this patch the specific API flavor is determined at compile time, something which severely limits usability on systems with more than one file system. Our first targets are AIX with its JFS and JFS2 APIs, at a later stage also GPFS. But it's certainly not limited to IBM stuff, this abstraction is also necessary for anything that copes with NFSv4 ACLs. For this we will check in handling very soon. Major contributions can be found in the copyright notices as well as the checkin log of the vl-posixacls branch. The final merge to 3_0 post-3.0.23 was done by Peter Somogyi <psomogyi@gamax.hu> (This used to be commit ca0c73f281a2a65a988094a46bb3e46a94011a53)