From: Hui Cao (huica) Date: Fri, 27 Oct 2017 13:01:56 +0000 (-0400) Subject: Merge pull request #1053 in SNORT/snort3 from logger_rename1 to master X-Git-Tag: 3.0.0-240~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=daafd5ecf6cdd3b1f7799878992ced2bb204cf46;p=thirdparty%2Fsnort3.git Merge pull request #1053 in SNORT/snort3 from logger_rename1 to master Squashed commit of the following: commit 6e84b6c43e6899f03978e982b280e5972b87f15a Author: Steve Chew Date: Thu Oct 26 18:29:49 2017 -0400 snort2lua: changed name of firewall_logging to sfunified2_logger. --- diff --git a/tools/snort2lua/output_states/out_sfunified2.cc b/tools/snort2lua/output_states/out_sfunified2.cc index 00a11561e..47c517ea6 100644 --- a/tools/snort2lua/output_states/out_sfunified2.cc +++ b/tools/snort2lua/output_states/out_sfunified2.cc @@ -43,7 +43,7 @@ namespace output std::string args; bool retval = true; - table_api.open_table("firewall_logging"); + table_api.open_table("sfunified2_logger"); while (std::getline(data_stream, args, ',')) { @@ -87,7 +87,7 @@ namespace output static ConversionState* ctor(Converter& c) { - c.get_table_api().open_top_level_table("firewall_logging"); // in case there are no arguments + c.get_table_api().open_top_level_table("sfunified2_logger"); // in case there are no arguments c.get_table_api().close_table(); return new SfUnified2(c); }