mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-09-01 15:05:23 +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_result_t
|
||||||
isc_app_run(void) {
|
isc_app_run(void) {
|
||||||
isc_result_t result;
|
isc_result_t result;
|
||||||
is_running = ISC_TRUE;
|
|
||||||
|
is_running = true;
|
||||||
result = isc_app_ctxrun((isc_appctx_t *)&isc_g_appctx);
|
result = isc_app_ctxrun((isc_appctx_t *)&isc_g_appctx);
|
||||||
is_running = ISC_FALSE;
|
is_running = false;
|
||||||
return result;
|
|
||||||
|
return (result);
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
Reference in New Issue
Block a user