mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-27 04:43:08 -04:00
change to bool constants; also fixed style error
This commit is contained in:
parent
aaa66d2560
commit
c609a67ac7
1 changed files with 5 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue