summaryrefslogtreecommitdiff
path: root/libcli
diff options
context:
space:
mode:
authorRalph Boehme <slow@samba.org>2018-05-09 10:14:37 +0200
committerRalph Boehme <slow@samba.org>2018-05-09 19:18:43 +0200
commitbc2beedfa2fbb473ad9b5c292f7b28f4cfe72a54 (patch)
treed70f9ab416b152314a07d2c903b95d0528e71aec /libcli
parent4b793d97642c9831e7f80dfed1d4ec8169a184ff (diff)
downloadsamba-bc2beedfa2fbb473ad9b5c292f7b28f4cfe72a54.tar.gz
libcli: remove unused se_create_child_secdesc_buf()
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
Diffstat (limited to 'libcli')
-rw-r--r--libcli/security/secdesc.c28
-rw-r--r--libcli/security/secdesc.h4
2 files changed, 0 insertions, 32 deletions
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_ */