summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-04-25 05:29:55 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-04-25 05:29:55 +0000
commitca103a076a53f4da083f3eb7f1b12ac95cb14fe1 (patch)
treeccfd5e009e54b4c701451e099c60805d3e9a05f2
parent4dd9cea74488c2c4006ebd0808c6841775cf123b (diff)
downloadsamba-ca103a076a53f4da083f3eb7f1b12ac95cb14fe1.tar.gz
samba-ca103a076a53f4da083f3eb7f1b12ac95cb14fe1.tar.bz2
samba-ca103a076a53f4da083f3eb7f1b12ac95cb14fe1.zip
This function is a duplicate.
(This used to be commit fd0cd6200b4b9b4b002dc5b640620c3fb533873b)
-rw-r--r--source3/rpc_parse/parse_sec.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/source3/rpc_parse/parse_sec.c b/source3/rpc_parse/parse_sec.c
index 47300e083a..081173cf8d 100644
--- a/source3/rpc_parse/parse_sec.c
+++ b/source3/rpc_parse/parse_sec.c
@@ -570,24 +570,6 @@ SEC_DESC_BUF *sec_desc_merge(TALLOC_CTX *ctx, SEC_DESC_BUF *new_sdb, SEC_DESC_BU
}
/*******************************************************************
- Tallocs a duplicate SID.
-********************************************************************/
-
-static DOM_SID *sid_dup_talloc(TALLOC_CTX *ctx, DOM_SID *src)
-{
- DOM_SID *dst;
-
- if(!src)
- return NULL;
-
- if((dst = talloc_zero(ctx, sizeof(DOM_SID))) != NULL) {
- sid_copy( dst, src);
- }
-
- return dst;
-}
-
-/*******************************************************************
Creates a SEC_DESC structure
********************************************************************/