diff options
author | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-09-10 13:44:20 +0300 |
---|---|---|
committer | Anatoliy Atanasov <anatoliy.atanasov@postpath.com> | 2010-09-10 13:44:20 +0300 |
commit | 788bfc8a25849bccc963a4b948c1e5857f2d885c (patch) | |
tree | e33b21e611e32f0dbce9b6c7e624e8a58857a598 /source4/dsdb | |
parent | 0ad22777ec44bf7eb35c2d9898ee1843ac308f76 (diff) | |
download | samba-788bfc8a25849bccc963a4b948c1e5857f2d885c.tar.gz samba-788bfc8a25849bccc963a4b948c1e5857f2d885c.tar.bz2 samba-788bfc8a25849bccc963a4b948c1e5857f2d885c.zip |
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.
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/repl/drepl_service.c | 2 | ||||
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/rootdse.c | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/source4/dsdb/repl/drepl_service.c b/source4/dsdb/repl/drepl_service.c index 1423827847..2c436172f1 100644 --- a/source4/dsdb/repl/drepl_service.c +++ b/source4/dsdb/repl/drepl_service.c @@ -347,7 +347,7 @@ static NTSTATUS drepl_take_FSMO_role(struct irpc_message *msg, { struct dreplsrv_service *service = talloc_get_type(msg->private_data, struct dreplsrv_service); - r->out.result = werror_to_ntstatus(dreplsrv_fsmo_role_check(service, r->in.role)); + r->out.result = dreplsrv_fsmo_role_check(service, r->in.role); return NT_STATUS_OK; } 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); |