mirror of
https://github.com/zeek/zeek.git
synced 2025-10-07 09:08: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
6
CHANGES
6
CHANGES
|
@ -1,4 +1,10 @@
|
||||||
|
|
||||||
|
2.3-682 | 2015-04-09 12:07:00 -0700
|
||||||
|
|
||||||
|
* Fixing input readers' component type. (Robin Sommer)
|
||||||
|
|
||||||
|
* Tiny spelling correction. (Seth Hall)
|
||||||
|
|
||||||
2.3-680 | 2015-04-06 16:02:43 -0500
|
2.3-680 | 2015-04-06 16:02:43 -0500
|
||||||
|
|
||||||
* BIT-1371: remove CMake version check from binary package scripts.
|
* BIT-1371: remove CMake version check from binary package scripts.
|
||||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
||||||
2.3-680
|
2.3-682
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
using namespace input;
|
using namespace input;
|
||||||
|
|
||||||
Component::Component(const std::string& name, factory_callback arg_factory)
|
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;
|
factory = arg_factory;
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
Demo::Foo - A Foo test input reader (dynamic, version 1.0)
|
Demo::Foo - A Foo test input reader (dynamic, version 1.0)
|
||||||
[Writer] Foo (Input::READER_FOO)
|
[Reader] Foo (Input::READER_FOO)
|
||||||
|
|
||||||
===
|
===
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue