From 5e108fc5f94e6a08083f8852a59fc4b79b198af8 Mon Sep 17 00:00:00 2001 From: Kamen Mazdrashki <kamenim@samba.org> Date: Fri, 22 Oct 2010 16:22:08 +0300 Subject: s4-prefixmap: Use WERR_NOT_FOUND when OID is not found in current prefixMap rather than WERR_DS_NO_MSDS_INTID. WERR_DS_NO_MSDS_INTID is intended to be used for msDsIntId attribute values handling --- source4/dsdb/samdb/ldb_modules/schema_data.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/dsdb/samdb') diff --git a/source4/dsdb/samdb/ldb_modules/schema_data.c b/source4/dsdb/samdb/ldb_modules/schema_data.c index 7b7d7d09ff..4818a54dcf 100644 --- a/source4/dsdb/samdb/ldb_modules/schema_data.c +++ b/source4/dsdb/samdb/ldb_modules/schema_data.c @@ -191,7 +191,7 @@ static int schema_data_add(struct ldb_module *module, struct ldb_request *req) status = dsdb_schema_pfm_find_oid(schema->prefixmap, oid, NULL); if (!W_ERROR_IS_OK(status)) { /* check for internal errors */ - if (!W_ERROR_EQUAL(WERR_DS_NO_MSDS_INTID, status)) { + if (!W_ERROR_EQUAL(status, WERR_NOT_FOUND)) { ldb_debug_set(ldb, LDB_DEBUG_ERROR, "schema_data_add: failed to map %s[%s]: %s\n", oid_attr, oid, win_errstr(status)); -- cgit