From 788bfc8a25849bccc963a4b948c1e5857f2d885c Mon Sep 17 00:00:00 2001 From: Anatoliy Atanasov Date: Fri, 10 Sep 2010 13:44:20 +0300 Subject: s4/fsmo: Change return type from NTSTATUS to WERROR for drepl_takeFSMOrole This removed an unnecessary conversion of the return type in drepl_take_FSMO_role. --- source4/dsdb/samdb/ldb_modules/rootdse.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'source4/dsdb/samdb/ldb_modules/rootdse.c') diff --git a/source4/dsdb/samdb/ldb_modules/rootdse.c b/source4/dsdb/samdb/ldb_modules/rootdse.c index 3397d60119..248a7203c8 100644 --- a/source4/dsdb/samdb/ldb_modules/rootdse.c +++ b/source4/dsdb/samdb/ldb_modules/rootdse.c @@ -983,7 +983,8 @@ static int rootdse_become_master(struct ldb_module *module, struct ldb_context *ldb = ldb_module_get_ctx(module); TALLOC_CTX *tmp_ctx = talloc_new(req); struct loadparm_context *lp_ctx = ldb_get_opaque(ldb, "loadparm"); - NTSTATUS status_call, status_fn; + NTSTATUS status_call; + WERROR status_fn; struct dcerpc_binding_handle *irpc_handle; msg = messaging_client_init(tmp_ctx, lpcfg_messaging_path(tmp_ctx, lp_ctx), @@ -1002,7 +1003,7 @@ static int rootdse_become_master(struct ldb_module *module, return LDB_ERR_OPERATIONS_ERROR; } status_fn = r.out.result; - if (!NT_STATUS_IS_OK(status_fn)) { + if (!W_ERROR_IS_OK(status_fn)) { return LDB_ERR_OPERATIONS_ERROR; } return ldb_module_done(req, NULL, NULL, LDB_SUCCESS); -- cgit