Display all match scores
Brought to you by:
a4lg,
jessekornblum
Is it possible to modify the program to use a threshold of zero to display *all* match scores? Here's a patch to make it happen:
- --- ssdeep-2.2/match.c 2009-10-13 16:31:14.000000000 -0700
+++ ssdeep-2.2-local/match.c 2009-10-13 18:11:58.000000000 -0700
@@ -92,7 +92,7 @@
}
score = fuzzy_compare(sum,tmp->hash);
- - if (score > s->threshold)
+ if (score >= s->threshold)
{
if (s->mode & mode_csv)
{
A patch for this feature, -a mode, has been checked into SVN.
The patch in SVN has been accepted.