2
0
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:
Evan Hunt
2018-10-18 20:42:25 -07:00
parent aaa66d2560
commit c609a67ac7

View File

@@ -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