summaryrefslogtreecommitdiff
path: root/source4/torture/rpc
diff options
context:
space:
mode:
authorSimo Sorce <idra@samba.org>2004-08-12 06:30:03 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:57:54 -0500
commitd01bc8a91e90a818786b46625249fc38ead7be4d (patch)
treef9d50101564de25c9100dfca77a823fb96afca68 /source4/torture/rpc
parente2357c67f5afbfeacafab6997b57ea262cd3c05a (diff)
downloadsamba-d01bc8a91e90a818786b46625249fc38ead7be4d.tar.gz
samba-d01bc8a91e90a818786b46625249fc38ead7be4d.tar.bz2
samba-d01bc8a91e90a818786b46625249fc38ead7be4d.zip
r1758: Move and enhance the add_string_to_array function as per volker job on trunk
(This used to be commit 606caddeb95382287fa41a5017ca473d0301be6b)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r--source4/torture/rpc/samr.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c
index c73672689e..1a48aaa944 100644
--- a/source4/torture/rpc/samr.c
+++ b/source4/torture/rpc/samr.c
@@ -2315,21 +2315,6 @@ static BOOL test_QueryDomainInfo2(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,
return True;
}
-void add_string_to_array(TALLOC_CTX *mem_ctx,
- const char *str, const char ***strings, int *num)
-{
- *strings = talloc_realloc(mem_ctx, *strings,
- ((*num)+1) * sizeof(**strings));
-
- if (*strings == NULL)
- return;
-
- (*strings)[*num] = str;
- *num += 1;
-
- return;
-}
-
/* Test whether querydispinfo level 5 and enumdomgroups return the same
set of group names. */
static BOOL test_GroupList(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx,