Rename a 'do_net_run' variable to 'do_run_loop'

For clarity, since the net_run() function was renamed to run_loop().
This commit is contained in:
Jon Siwek 2020-12-14 13:07:05 -08:00
parent 44903da8fd
commit faf6d4ec1a
3 changed files with 9 additions and 9 deletions

View file

@ -24,8 +24,8 @@ SetupResult setup(int argc, char** argv, Options* options = nullptr);
/**
* Cleans up Zeek's global state.
* @param did_net_run whether the net_run() was called.
* @param did_run_loop whether the run_loop() function was called.
*/
int cleanup(bool did_net_run);
int cleanup(bool did_run_loop);
} // namespace zeek::detail