From 40f6cec3cacdb3a1fcb698725731fc541d3a0dd8 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Fri, 2 Apr 2021 10:04:21 +0200 Subject: [PATCH] ids.cgi: Fix function call of get_used_provider_rulesfile_file(). The function is locatated in the IDS module and therefore needs to be called from there. Signed-off-by: Stefan Schantl --- html/cgi-bin/ids.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html/cgi-bin/ids.cgi b/html/cgi-bin/ids.cgi index 58bd5a6f0d..db771e480c 100644 --- a/html/cgi-bin/ids.cgi +++ b/html/cgi-bin/ids.cgi @@ -885,7 +885,7 @@ if ($cgiparams{'RULESET'} eq $Lang::tr{'ids apply'}) { &IDS::drop_dl_rulesfile($provider); # Get the name of the provider rulessets include file. - my $provider_used_rulefile = &get_used_provider_rulesfile_file($provider); + my $provider_used_rulefile = &IDS::get_used_provider_rulesfile_file($provider); # Drop the file, it is not longer needed. unlink("$provider_used_rulefile"); -- 2.39.5