svn commit: samba r19331 - in branches/SAMBA_4_0/source/torture/ldap: .

idra at samba.org idra at samba.org
Mon Oct 16 11:58:20 GMT 2006


Author: idra
Date: 2006-10-16 11:58:19 +0000 (Mon, 16 Oct 2006)
New Revision: 19331

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=19331

Log:

Respect the mem hierarchy


Modified:
   branches/SAMBA_4_0/source/torture/ldap/schema.c


Changeset:
Modified: branches/SAMBA_4_0/source/torture/ldap/schema.c
===================================================================
--- branches/SAMBA_4_0/source/torture/ldap/schema.c	2006-10-16 11:57:44 UTC (rev 19330)
+++ branches/SAMBA_4_0/source/torture/ldap/schema.c	2006-10-16 11:58:19 UTC (rev 19331)
@@ -226,9 +226,9 @@
 	ctrl[1] = NULL;
 
 	req->operation = LDB_SEARCH;
-	req->op.search.base = ldb_dn_explode(ldb, root->schemadn);
+	req->op.search.base = ldb_dn_explode(req, root->schemadn);
 	req->op.search.scope = LDB_SCOPE_SUBTREE;
-	req->op.search.tree = ldb_parse_tree(ldb, filter);
+	req->op.search.tree = ldb_parse_tree(req, filter);
 	if (req->op.search.tree == NULL) return -1;
 	req->op.search.attrs = NULL;
 	req->controls = ctrl;



More information about the samba-cvs mailing list