Rename bro to zeek in error messages

More renaming in error messages and a few other places.
This commit is contained in:
Daniel Thayer 2019-06-16 23:06:21 -05:00
parent e2dc0092f3
commit 0ae1bfa29d
11 changed files with 12 additions and 12 deletions

View file

@ -83,7 +83,7 @@ Manager::Manager(const string& arg_config, const string& bro_command)
// a PATH component that starts with a tilde (such as "~/bin"). A simple
// workaround is to just run bro with a relative or absolute path.
if ( path_to_bro.empty() || stat(path_to_bro.c_str(), &s) < 0 )
reporter->InternalError("Zeekygen can't get mtime of bro binary %s (try again by specifying the absolute or relative path to Bro): %s",
reporter->InternalError("Zeekygen can't get mtime of zeek binary %s (try again by specifying the absolute or relative path to Zeek): %s",
path_to_bro.c_str(), strerror(errno));
bro_mtime = s.st_mtime;