From 86fbeb0e71281117c8c5d7eed5bd9a1ccd2d8499 Mon Sep 17 00:00:00 2001
From: Andreas Romeyke <art1@andreas-romeyke.de>
Date: Wed, 5 Jan 2022 14:17:26 +0100
Subject: [PATCH] - increased capacity of bloom filter

---
 deep_fixitycheck.pl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/deep_fixitycheck.pl b/deep_fixitycheck.pl
index 095c163..c7d25ef 100644
--- a/deep_fixitycheck.pl
+++ b/deep_fixitycheck.pl
@@ -41,7 +41,7 @@ STDOUT->autoflush(1);
 binmode(STDOUT, ":encoding(UTF-8)");
 
 my @algorithms = qw(CRC32 MD5 SHA1 SHA256 SHA512); # used fixity algorithm names in Rosetta
-my $capacity = 500; # bloomfilter capacity (n last seen files)
+my $capacity = 5000; # bloomfilter capacity (n last seen files)
 
 # scans a given dir for IEs and stores in temporary file
 # There are two parts:
-- 
GitLab