mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 19:48:20 +00:00
Fixing input readers' component type.
A reader is a reader, not a writer.
This commit is contained in:
parent
3335da67e0
commit
a4edc0df08
4 changed files with 9 additions and 3 deletions
|
@ -9,7 +9,7 @@
|
|||
using namespace input;
|
||||
|
||||
Component::Component(const std::string& name, factory_callback arg_factory)
|
||||
: plugin::Component(plugin::component::WRITER, name)
|
||||
: plugin::Component(plugin::component::READER, name)
|
||||
{
|
||||
factory = arg_factory;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue