From ce40fddefc35cd879294c85a4c5eb85db5a4f773 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 aad0630e63..8a2afd9061 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.2