DPD changes - small script fixes and renames.

This addresses review feedback of GH-4200. No functional changes.
This commit is contained in:
Johanna Amann 2025-02-05 13:55:43 +00:00
parent 6324445d62
commit e3493bc110
6 changed files with 8 additions and 11 deletions

View file

@ -125,7 +125,7 @@ event analyzer_violation_info(atype: AllAnalyzers::Tag, info: AnalyzerViolationI
# add "-service" to the list of services on removal due to violation, if analyzer was confirmed before
if ( track_removed_services_in_connection && disabled && Analyzer::name(atype) in c$service )
{
local rname = fmt("-%s", Analyzer::name(atype));
local rname = cat("-", Analyzer::name(atype));
if ( rname !in c$service )
add c$service[rname];
}