From: Stefan Schantl Date: Sat, 26 Mar 2022 10:27:01 +0000 (+0100) Subject: update-ids-ruleset: Fix typo in return code. X-Git-Tag: v2.27-core170~195^2~61 X-Git-Url: http://git.ipfire.org/?p=ipfire-2.x.git;a=commitdiff_plain;h=ff780d8b3fa6b91fe9d8560684232381b81b5498 update-ids-ruleset: Fix typo in return code. Signed-off-by: Stefan Schantl --- diff --git a/src/scripts/update-ids-ruleset b/src/scripts/update-ids-ruleset index f87eb1926f..52df22a767 100644 --- a/src/scripts/update-ids-ruleset +++ b/src/scripts/update-ids-ruleset @@ -114,7 +114,7 @@ foreach my $id (keys %providers) { # Check if we got a return code. if ($return) { # Handle different return codes. - if ($return eq "not_modified") { + if ($return eq "not modified") { # Log notice to syslog. &_log_to_syslog(" Skipping $provider - The ruleset is up-to-date");