1
0
mirror of https://github.com/samba-team/samba.git synced 2025-11-25 00:23:52 +03:00

r21366: Until we have a schema enforcing module (which will make it

impossible to add object without an objectclass), we need to
use the default ldb search filter (an empty one), to retrieve
all objects, and all record contents.
This commit is contained in:
Simo Sorce
2007-02-15 14:48:47 +00:00
committed by Gerald (Jerry) Carter
parent e96aa89800
commit fab315bb8c

View File

@@ -311,7 +311,7 @@ qx.Proto.buildFsm = function(module)
}
// Build the search expression
var searchExpr = "(objectclass=*)";
var searchExpr = "";
// Get our module descriptor
var module = fsm.getObject("swat.main.module");
@@ -415,7 +415,7 @@ qx.Proto.buildFsm = function(module)
baseDN = hierarchy.reverse().join(",");
// Build the search expression
var searchExpr = "(objectclass=*)";
var searchExpr = "";
// Get our module descriptor
var module = fsm.getObject("swat.main.module");