mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00
Remove unnecessary ".bro" from @load directives
Removed ".bro" file extensions from "@load" directives because they are not needed.
This commit is contained in:
parent
956674745b
commit
bff8392ad4
4 changed files with 4 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
||||||
module PE;
|
module PE;
|
||||||
|
|
||||||
@load ./consts.bro
|
@load ./consts
|
||||||
|
|
||||||
export {
|
export {
|
||||||
redef enum Log::ID += { LOG };
|
redef enum Log::ID += { LOG };
|
||||||
|
|
|
@ -1,2 +1,2 @@
|
||||||
@load ./main.bro
|
@load ./main
|
||||||
@load ./magic
|
@load ./magic
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
module RADIUS;
|
module RADIUS;
|
||||||
|
|
||||||
@load ./consts.bro
|
@load ./consts
|
||||||
@load base/utils/addrs
|
@load base/utils/addrs
|
||||||
|
|
||||||
export {
|
export {
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
@load ./packet-fragments
|
@load ./packet-fragments
|
||||||
@load ./warnings
|
@load ./warnings
|
||||||
@load ./extracted_file_limits.bro
|
@load ./extracted_file_limits
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue