diff --git a/CHANGES b/CHANGES index db09fdd340..c02fe4675f 100644 --- a/CHANGES +++ b/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 * BIT-1371: remove CMake version check from binary package scripts. diff --git a/VERSION b/VERSION index 937b335f4d..5b8b63a8bf 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.3-680 +2.3-682 diff --git a/src/input/Component.cc b/src/input/Component.cc index fd70c76216..b7c5d5e30b 100644 --- a/src/input/Component.cc +++ b/src/input/Component.cc @@ -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; diff --git a/testing/btest/Baseline/plugins.reader/output b/testing/btest/Baseline/plugins.reader/output index fa218d04a5..0f8980d0e7 100644 --- a/testing/btest/Baseline/plugins.reader/output +++ b/testing/btest/Baseline/plugins.reader/output @@ -1,4 +1,4 @@ Demo::Foo - A Foo test input reader (dynamic, version 1.0) - [Writer] Foo (Input::READER_FOO) + [Reader] Foo (Input::READER_FOO) ===