diff options
| author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-03 14:05:04 +0200 | 
|---|---|---|
| committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-07-03 14:53:02 +0200 | 
| commit | d1ee7ab16ee2993e12dad2a3eed2f1719fae11d7 (patch) | |
| tree | 04f5c45fe94f3250ab7a4c376e278146690b297f | |
| parent | 368aa25f7c1a2b8c05780479b1e03a2632c42d11 (diff) | |
| download | samba-d1ee7ab16ee2993e12dad2a3eed2f1719fae11d7.tar.gz samba-d1ee7ab16ee2993e12dad2a3eed2f1719fae11d7.tar.bz2 samba-d1ee7ab16ee2993e12dad2a3eed2f1719fae11d7.zip  | |
s4:dsdb_schema_set_attributes - remove unneeded filter criterias
We already choose the right entry by specifying the right basedn with scope
"LDB_SCOPE_BASE".
| -rw-r--r-- | source4/dsdb/schema/schema_set.c | 6 | 
1 files changed, 4 insertions, 2 deletions
diff --git a/source4/dsdb/schema/schema_set.c b/source4/dsdb/schema/schema_set.c index cb43111b3a..e913ecf2cd 100644 --- a/source4/dsdb/schema/schema_set.c +++ b/source4/dsdb/schema/schema_set.c @@ -125,7 +125,8 @@ static int dsdb_schema_set_attributes(struct ldb_context *ldb, struct dsdb_schem  	}  	/* Try to avoid churning the attributes too much - we only want to do this if they have changed */ -	ret = ldb_search(ldb, mem_ctx, &res, msg->dn, LDB_SCOPE_BASE, NULL, "dn=%s", ldb_dn_get_linearized(msg->dn)); +	ret = ldb_search(ldb, mem_ctx, &res, msg->dn, LDB_SCOPE_BASE, NULL, +			 NULL);  	if (ret == LDB_ERR_NO_SUCH_OBJECT) {  		ret = ldb_add(ldb, msg);  	} else if (ret != LDB_SUCCESS) { @@ -154,7 +155,8 @@ static int dsdb_schema_set_attributes(struct ldb_context *ldb, struct dsdb_schem  	/* Now write out the indexs, as found in the schema (if they have changed) */ -	ret = ldb_search(ldb, mem_ctx, &res_idx, msg_idx->dn, LDB_SCOPE_BASE, NULL, "dn=%s", ldb_dn_get_linearized(msg_idx->dn)); +	ret = ldb_search(ldb, mem_ctx, &res_idx, msg_idx->dn, LDB_SCOPE_BASE, +			 NULL, NULL);  	if (ret == LDB_ERR_NO_SUCH_OBJECT) {  		ret = ldb_add(ldb, msg_idx);  	} else if (ret != LDB_SUCCESS) {  | 
