mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-30 22:15:20 +00:00
change to bool constants; also fixed style error
This commit is contained in:
@@ -253,10 +253,12 @@ isc_app_ctxrun(isc_appctx_t *ctx0) {
|
||||
isc_result_t
|
||||
isc_app_run(void) {
|
||||
isc_result_t result;
|
||||
is_running = ISC_TRUE;
|
||||
|
||||
is_running = true;
|
||||
result = isc_app_ctxrun((isc_appctx_t *)&isc_g_appctx);
|
||||
is_running = ISC_FALSE;
|
||||
return result;
|
||||
is_running = false;
|
||||
|
||||
return (result);
|
||||
}
|
||||
|
||||
bool
|
||||
|
Reference in New Issue
Block a user