* [PATCH] convert-snort: Fix logic for detecting enough free disk space.
@ 2019-04-08 18:02 Stefan Schantl
0 siblings, 0 replies; only message in thread
From: Stefan Schantl @ 2019-04-08 18:02 UTC (permalink / raw)
To: development
[-- Attachment #1: Type: text/plain, Size: 911 bytes --]
The subfunction only will return something if the check fails - so the logic
of the if statement was wrong set and the downloader only was called if
this check failed and to less diskspace would be available.
Signed-off-by: Stefan Schantl <stefan.schantl(a)ipfire.org>
---
config/suricata/convert-snort | 3 +++
1 file changed, 3 insertions(+)
diff --git a/config/suricata/convert-snort b/config/suricata/convert-snort
index ca650b149..19aa38fbc 100644
--- a/config/suricata/convert-snort
+++ b/config/suricata/convert-snort
@@ -231,6 +231,9 @@ if (-f $snort_rules_tarball) {
} else {
# Check if enought disk space is available.
if(&IDS::checkdiskspace()) {
+ # Print error message.
+ print "Could not download ruleset - Not enough free diskspace available.\n";
+ } else {
# Call the download function and grab the new ruleset.
&IDS::downloadruleset();
}
--
2.20.1
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2019-04-08 18:02 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-08 18:02 [PATCH] convert-snort: Fix logic for detecting enough free disk space Stefan Schantl
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox