Browse code

update

git-svn-id: file:///var/lib/svn/clamav-devel/trunk/clamav-devel@917 77e5149b-7576-45b1-b177-96237e5ba77b

Tomasz Kojm authored on 2004/09/22 02:05:31
Showing 4 changed files
... ...
@@ -1,3 +1,8 @@
1
+Tue Sep 21 19:01:32 CEST 2004 (tk)
2
+----------------------------------
3
+  * libclamav/filetypes.c: fix PK00PK zip rule (thanks to <steveb*webtribe.net>)
4
+  V 0.80rc2
5
+
1 6
 Tue Sep 21 15:56:35 BST 2004 (njh)
2 7
 ----------------------------------
3 8
   * libclamav:	Fix handling of empty lines in text/plain emails
... ...
@@ -2,6 +2,12 @@ Note: This README/NEWS file refers to the source tarball. Some things described
2 2
 here may not be available in binary packages.
3 3
 --
4 4
 
5
+0.80rc2
6
+-------
7
+
8
+This update fixes a serious bug in e-mail scanner.
9
+
10
+
5 11
 0.80rc
6 12
 ------
7 13
 
... ...
@@ -2,6 +2,12 @@ Note: This README/NEWS file refers to the source tarball. Some things described
2 2
 here may not be available in binary packages.
3 3
 --
4 4
 
5
+0.80rc2
6
+-------
7
+
8
+This update fixes a serious bug in e-mail scanner.
9
+
10
+
5 11
 0.80rc
6 12
 ------
7 13
 
... ...
@@ -55,7 +55,7 @@ static const struct cli_magic_s cli_magic[] = {
55 55
 
56 56
     {0,	    "Rar!",			4,  "RAR",		CL_TYPE_RAR},
57 57
     {0,	    "PK\003\004",		4,  "ZIP",		CL_TYPE_ZIP},
58
-    {0,	    "PK00PK\003\004",		4,  "ZIP",		CL_TYPE_ZIP},
58
+    {0,	    "PK00PK\003\004",		8,  "ZIP",		CL_TYPE_ZIP},
59 59
     {0,	    "\037\213",			2,  "GZip",		CL_TYPE_GZ},
60 60
     {0,	    "BZh",			3,  "BZip",		CL_TYPE_BZ},
61 61
     {0,	    "SZDD",			4,  "compress.exe'd",	CL_TYPE_MSSZDD},