From: Ralph Boehme Date: Wed, 9 May 2018 08:14:37 +0000 (+0200) Subject: libcli: remove unused se_create_child_secdesc_buf() X-Git-Tag: ldb-1.4.0~377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc2beedfa2fbb473ad9b5c292f7b28f4cfe72a54;p=thirdparty%2Fsamba.git libcli: remove unused se_create_child_secdesc_buf() Commit e2c9ad93cb914186b89e2055f1bed3cceee1f768 removed the last caller of this. Signed-off-by: Ralph Boehme Reviewed-by: Andreas Schneider Autobuild-User(master): Ralph Böhme Autobuild-Date(master): Wed May 9 19:18:44 CEST 2018 on sn-devel-144 --- diff --git a/libcli/security/secdesc.c b/libcli/security/secdesc.c index 6e20e90bee5..8cf44347c7c 100644 --- a/libcli/security/secdesc.c +++ b/libcli/security/secdesc.c @@ -636,31 +636,3 @@ NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx, } return NT_STATUS_OK; } - -NTSTATUS se_create_child_secdesc_buf(TALLOC_CTX *ctx, - struct sec_desc_buf **ppsdb, - const struct security_descriptor *parent_ctr, - bool container) -{ - NTSTATUS status; - size_t size = 0; - struct security_descriptor *sd = NULL; - - *ppsdb = NULL; - status = se_create_child_secdesc(ctx, - &sd, - &size, - parent_ctr, - parent_ctr->owner_sid, - parent_ctr->group_sid, - container); - if (!NT_STATUS_IS_OK(status)) { - return status; - } - - *ppsdb = make_sec_desc_buf(ctx, size, sd); - if (!*ppsdb) { - return NT_STATUS_NO_MEMORY; - } - return NT_STATUS_OK; -} diff --git a/libcli/security/secdesc.h b/libcli/security/secdesc.h index 34d9d77b4b4..dd8cf4ed716 100644 --- a/libcli/security/secdesc.h +++ b/libcli/security/secdesc.h @@ -97,9 +97,5 @@ NTSTATUS se_create_child_secdesc(TALLOC_CTX *ctx, const struct dom_sid *owner_sid, const struct dom_sid *group_sid, bool container); -NTSTATUS se_create_child_secdesc_buf(TALLOC_CTX *ctx, - struct sec_desc_buf **ppsdb, - const struct security_descriptor *parent_ctr, - bool container); #endif /* _SECDESC_H_ */