diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2010-07-06 03:23:43 +0300 |
---|---|---|
committer | Kamen Mazdrashki <kamenim@samba.org> | 2010-07-08 02:38:33 +0300 |
commit | d7bcac5a9f39a325d984269f7e8651870dcb82ab (patch) | |
tree | 58a45cf9fb0510a394cd07b86d9ae8b90944aa95 /source4/dsdb/samdb | |
parent | dc720739ab8d966c6d7d5064281740b6b35b77bf (diff) | |
download | samba-d7bcac5a9f39a325d984269f7e8651870dcb82ab.tar.gz samba-d7bcac5a9f39a325d984269f7e8651870dcb82ab.tar.bz2 samba-d7bcac5a9f39a325d984269f7e8651870dcb82ab.zip |
s4-source4/dsdb/samdb/ldb_modules/ridalloc.c Use DSDB_FLAG_NEXT_MODULE flag
Diffstat (limited to 'source4/dsdb/samdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/ridalloc.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/ridalloc.c b/source4/dsdb/samdb/ldb_modules/ridalloc.c index 55636d13a7..91d48ba47b 100644 --- a/source4/dsdb/samdb/ldb_modules/ridalloc.c +++ b/source4/dsdb/samdb/ldb_modules/ridalloc.c @@ -107,7 +107,8 @@ static int ridalloc_rid_manager_allocate(struct ldb_module *module, struct ldb_d struct ldb_context *ldb = ldb_module_get_ctx(module); const unsigned alloc_size = 500; - ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_manager_dn, attrs, 0); + ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_manager_dn, + attrs, DSDB_FLAG_NEXT_MODULE); if (ret != LDB_SUCCESS) { ldb_asprintf_errstring(ldb, "Failed to find rIDAvailablePool in %s - %s", ldb_dn_get_linearized(rid_manager_dn), ldb_errstring(ldb)); @@ -449,7 +450,8 @@ int ridalloc_allocate_rid(struct ldb_module *module, uint32_t *rid) return ret; } - ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_set_dn, attrs, 0); + ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_set_dn, + attrs, DSDB_FLAG_NEXT_MODULE); if (ret != LDB_SUCCESS) { ldb_asprintf_errstring(ldb, __location__ ": No RID Set %s", ldb_dn_get_linearized(rid_set_dn)); @@ -623,7 +625,8 @@ int ridalloc_allocate_rid_pool_fsmo(struct ldb_module *module, struct dsdb_fsmo_ struct ldb_result *res; uint64_t alloc_pool; - ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_set_dn, attrs, 0); + ret = dsdb_module_search_dn(module, tmp_ctx, &res, rid_set_dn, + attrs, DSDB_FLAG_NEXT_MODULE); if (ret != LDB_SUCCESS) { ldb_asprintf_errstring(ldb, __location__ ": No RID Set %s", ldb_dn_get_linearized(rid_set_dn)); |