From: Volker Lendecke Date: Wed, 20 Jan 2021 13:53:56 +0000 (+0100) Subject: rpc_server: Fix a "bool==true" condition X-Git-Tag: tevent-0.11.0~1996 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f055d3f7db1c6eb47a5773f3cbe5bf8a047f3830;p=thirdparty%2Fsamba.git rpc_server: Fix a "bool==true" condition Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/source4/rpc_server/service_rpc.c b/source4/rpc_server/service_rpc.c index ae8d91e68f0..406385f43e6 100644 --- a/source4/rpc_server/service_rpc.c +++ b/source4/rpc_server/service_rpc.c @@ -82,7 +82,7 @@ static NTSTATUS dcesrv_init_endpoints(struct task_server *task, * process operations. This is not the most elegant solution, but it is * the least ugly, and is confined to the next block of code. */ - if (use_single_process == true) { + if (use_single_process) { model_ops = process_model_startup("single"); if (model_ops == NULL) { DBG_ERR("Unable to load single process model");