From: Jelte Jansen Date: Mon, 10 Dec 2012 09:54:12 +0000 (+0100) Subject: [2445] rename log_buffer_impl to buffer_appender_impl X-Git-Tag: bind10-1.0.0-beta-release~19^2~17^2~8 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8bf2c98d2e62d95c8f86d41895f4cfaca3371d68;p=thirdparty%2Fkea.git [2445] rename log_buffer_impl to buffer_appender_impl Since LogBuffer no longer exists, the file name did not match its content anymore --- diff --git a/src/lib/log/Makefile.am b/src/lib/log/Makefile.am index e9074f8198..56918e959d 100644 --- a/src/lib/log/Makefile.am +++ b/src/lib/log/Makefile.am @@ -31,7 +31,7 @@ libb10_log_la_SOURCES += message_initializer.cc message_initializer.h libb10_log_la_SOURCES += message_reader.cc message_reader.h libb10_log_la_SOURCES += message_types.h libb10_log_la_SOURCES += output_option.cc output_option.h -libb10_log_la_SOURCES += log_buffer_impl.cc log_buffer_impl.h +libb10_log_la_SOURCES += buffer_appender_impl.cc buffer_appender_impl.h EXTRA_DIST = README EXTRA_DIST += logimpl_messages.mes diff --git a/src/lib/log/log_buffer_impl.cc b/src/lib/log/buffer_appender_impl.cc similarity index 98% rename from src/lib/log/log_buffer_impl.cc rename to src/lib/log/buffer_appender_impl.cc index e7bbff8ce7..150477ae47 100644 --- a/src/lib/log/log_buffer_impl.cc +++ b/src/lib/log/buffer_appender_impl.cc @@ -12,7 +12,7 @@ // OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR // PERFORMANCE OF THIS SOFTWARE. -#include +#include #include #include diff --git a/src/lib/log/log_buffer_impl.h b/src/lib/log/buffer_appender_impl.h similarity index 100% rename from src/lib/log/log_buffer_impl.h rename to src/lib/log/buffer_appender_impl.h diff --git a/src/lib/log/logger_manager_impl.cc b/src/lib/log/logger_manager_impl.cc index 4283cdc826..ac1e6bf3c7 100644 --- a/src/lib/log/logger_manager_impl.cc +++ b/src/lib/log/logger_manager_impl.cc @@ -30,7 +30,7 @@ #include #include #include -#include +#include using namespace std; diff --git a/src/lib/log/tests/log_buffer_unittest.cc b/src/lib/log/tests/log_buffer_unittest.cc index 33a4b010fa..b583290ba0 100644 --- a/src/lib/log/tests/log_buffer_unittest.cc +++ b/src/lib/log/tests/log_buffer_unittest.cc @@ -18,7 +18,7 @@ #include #include #include -#include +#include #include #include