[Pkg-clamav-commits] [SCM] Debian repository for ClamAV branch, debian/unstable, updated. debian/0.95+dfsg-1-167-g4319a8f

edwin edwin at 77e5149b-7576-45b1-b177-96237e5ba77b
Fri Jun 12 19:11:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit bb40eb56385fd9873d4d6adc98bdfb9d6485b950
Author: edwin <edwin at 77e5149b-7576-45b1-b177-96237e5ba77b>
Date:   Wed Apr 22 11:24:10 2009 +0000

    tune sensitivity of Trojan.Swizzor.Gen detection.
    
    git-svn-id: http://svn.clamav.net/svn/clamav-devel/trunk@5052 77e5149b-7576-45b1-b177-96237e5ba77b

diff --git a/ChangeLog b/ChangeLog
index 75335e1..2546f77 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Apr 22 14:24:03 EEST 2009 (edwin)
+-------------------------------------
+ * libclamav/special.c: tune sensitivity of Trojan.Swizzor.Gen
+ detection.
+
 Mon Apr 20 17:41:14 EEST 2009 (edwin)
 -------------------------------------
  * clamd/session.c: fix STATS for INSTREAM commands (bb #1565).
diff --git a/libclamav/special.c b/libclamav/special.c
index 5f24c1b..232d1a9 100644
--- a/libclamav/special.c
+++ b/libclamav/special.c
@@ -502,7 +502,7 @@ int cli_detect_swizz(struct swizz_stats *stats)
 	}
 	if (stats->total <= 337)
 	    return CL_CLEAN;
-	if (stats->suspicious<<10 > 20*stats->total)
+	if (stats->suspicious<<10 > 40*stats->total)
 	    return CL_VIRUS;
 	if (!stats->suspicious)
 	    return CL_CLEAN;

-- 
Debian repository for ClamAV



More information about the Pkg-clamav-commits mailing list