Rename all scripts to have ".zeek" file extension

This commit is contained in:
Daniel Thayer 2019-04-11 21:12:40 -05:00
parent 537d9cab97
commit 18bd74454b
357 changed files with 169 additions and 169 deletions

View file

@ -185,7 +185,7 @@ bool Manager::ActivateDynamicPluginInternal(const std::string& name, bool ok_if_
string init;
// First load {scripts}/__preload__.bro automatically.
// First load {scripts}/__preload__.zeek automatically.
for (const string& ext : script_extensions)
{
init = dir + "scripts/__preload__" + ext;
@ -198,7 +198,7 @@ bool Manager::ActivateDynamicPluginInternal(const std::string& name, bool ok_if_
}
}
// Load {bif,scripts}/__load__.bro automatically.
// Load {bif,scripts}/__load__.zeek automatically.
for (const string& ext : script_extensions)
{
init = dir + "lib/bif/__load__" + ext;