diff --git a/CHANGES b/CHANGES index 7928a028d3..fd4e100833 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,10 @@ +5.1.0-dev.269 | 2022-07-18 08:57:32 -0700 + + * DebugLogger: "auto const" to "const auto" (Arne Welzel, Corelight) + + This was pointed out in a separate PR so fixing the occurrence I + had managed to sneak in already. + 5.1.0-dev.267 | 2022-07-18 08:55:38 -0700 * Fix some warnings from bro_version deprecation (Tim Wojtulewicz) diff --git a/VERSION b/VERSION index 70bb4271bf..7f45bb935e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -5.1.0-dev.267 +5.1.0-dev.269 diff --git a/src/DebugLogger.cc b/src/DebugLogger.cc index 49b0205efe..4ff950c377 100644 --- a/src/DebugLogger.cc +++ b/src/DebugLogger.cc @@ -152,7 +152,7 @@ bool DebugLogger::CheckStreams(const std::set& plugin_names) for ( const auto& p : plugin_names ) available_plugin_streams.insert(PluginStreamName(p)); - for ( auto const& stream : enabled_streams ) + for ( const auto& stream : enabled_streams ) { if ( ! util::starts_with(stream, "plugin-") ) continue;