summaryrefslogtreecommitdiff
path: root/source4/lib/ldb/common/ldb_controls.c
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamenim@samba.org>2010-07-13 02:37:58 +0300
committerKamen Mazdrashki <kamenim@samba.org>2010-07-29 00:53:49 +0300
commit88f17981001c509c4844304b5a120540ae2963f6 (patch)
tree4f44db9128133816c04ef1f52c85baee08cd3143 /source4/lib/ldb/common/ldb_controls.c
parente8ac4a8b82798ef0691d384f59d880dc38b56592 (diff)
downloadsamba-88f17981001c509c4844304b5a120540ae2963f6.tar.gz
samba-88f17981001c509c4844304b5a120540ae2963f6.tar.bz2
samba-88f17981001c509c4844304b5a120540ae2963f6.zip
s4-ldb: use TALLOC_CTX type instead of 'void'
Diffstat (limited to 'source4/lib/ldb/common/ldb_controls.c')
-rw-r--r--source4/lib/ldb/common/ldb_controls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb_controls.c b/source4/lib/ldb/common/ldb_controls.c
index abdbb1496d..d75221e720 100644
--- a/source4/lib/ldb/common/ldb_controls.c
+++ b/source4/lib/ldb/common/ldb_controls.c
@@ -236,7 +236,7 @@ int ldb_reply_add_control(struct ldb_reply *ares, const char *oid, bool critical
/* Parse controls from the format used on the command line and in ejs */
-struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, void *mem_ctx, const char **control_strings)
+struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char **control_strings)
{
unsigned int i;
struct ldb_control **ctrl;