summaryrefslogtreecommitdiff
path: root/libcli/security/secdesc.h
AgeCommit message (Collapse)AuthorFilesLines
2019-05-22libcli/security: Remove unused dup_sec_desc_buf()Andrew Bartlett1-5/+0
This has been unused since before 762e7e1dff89cc14b0130fc9a22038b0845630a2 in 2003. Found by callcatcher Signed-off-by: Andrew Bartlett <abartlet@samba.org> Reviewed-by: Gary Lockyer <gary@catalyst.net.nz>
2018-05-09libcli: remove unused se_create_child_secdesc_buf()Ralph Boehme1-4/+0
Commit e2c9ad93cb914186b89e2055f1bed3cceee1f768 removed the last caller of this. Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Andreas Schneider <asn@samba.org> Autobuild-User(master): Ralph Böhme <slow@samba.org> Autobuild-Date(master): Wed May 9 19:18:44 CEST 2018 on sn-devel-144
2015-08-14lib: Remove some unused codeVolker Lendecke1-5/+0
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Martin Schwenke <martin@meltin.net>
2014-05-29libcli/security: remove unused sec_desc_del_sid()David Disseldorp1-4/+0
The function is unused, and shares mostly the same behaviour as security_descriptor_acl_del(). Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
2014-05-28libcli/secdesc: remove dup_sec_desc()David Disseldorp1-5/+0
With all callers converted to use security_descriptor_copy(), this function can be removed. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
2014-05-28libcli/sd: remove redundant sec_desc_add_sid()David Disseldorp1-5/+0
This function adds an ACE to a security descriptor DACL. The same can be achieved via the more flexible and much cleaner security_ace_create() and security_descriptor_dacl_add() functions. Signed-off-by: David Disseldorp <ddiss@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> Reviewed-by: Volker Lendecke <vl@samba.org>
2011-07-23libcli/security: add some const to marshall_sec_desc[_buf]()Stefan Metzmacher1-2/+2
metze
2011-06-10libcli/security/secdesc.h: fix licence/copyrightGünther Deschner1-0/+22
Guenther
2011-05-31libcli/security: move secdesc.c to the top level libcli/securityAndrew Bartlett1-0/+102
This code does not rely on lp_ or other source3 only functions, so can be part of the common library. Andrew Bartlett