Browse code

re-enable ARJ in standard builds; bump f-level

git-svn: trunk@3290

Tomasz Kojm authored on 2007/10/10 00:27:21
Showing 3 changed files
... ...
@@ -1,3 +1,8 @@
1
+Tue Oct  9 16:28:56 CEST 2007 (tk)
2
+----------------------------------
3
+  * libclamav/dconf.c: re-enable ARJ in standard builds
4
+  * libclamav/others.c: bump f-level
5
+
1 6
 Tue Oct  9 11:36:44 BST 2007 (trog)
2 7
 -----------------------------------
3 8
   * libclamav/unarj.c: Improve bounds checking.
... ...
@@ -71,7 +71,7 @@ static struct dconf_module modules[] = {
71 71
     { "ARCHIVE",    "ZIP",	    ARCH_CONF_ZIP,	    1 },
72 72
     { "ARCHIVE",    "GZIP",	    ARCH_CONF_GZ,	    1 },
73 73
     { "ARCHIVE",    "BZIP",	    ARCH_CONF_BZ,	    1 },
74
-    { "ARCHIVE",    "ARJ",          ARCH_CONF_ARJ,          DCONF_ENABLE_EXPERIMENTAL }, /* exp */
74
+    { "ARCHIVE",    "ARJ",          ARCH_CONF_ARJ,	    1 },
75 75
     { "ARCHIVE",    "SZDD",	    ARCH_CONF_SZDD,	    1 },
76 76
     { "ARCHIVE",    "CAB",	    ARCH_CONF_CAB,	    1 },
77 77
     { "ARCHIVE",    "CHM",	    ARCH_CONF_CHM,	    1 },
... ...
@@ -80,7 +80,7 @@ static pthread_mutex_t cli_gentemp_mutex = PTHREAD_MUTEX_INITIALIZER;
80 80
 #define       P_tmpdir        "C:\\WINDOWS\\TEMP"
81 81
 #endif
82 82
 
83
-#define CL_FLEVEL 22 /* don't touch it */
83
+#define CL_FLEVEL 23 /* don't touch it */
84 84
 
85 85
 uint8_t cli_debug_flag = 0, cli_leavetemps_flag = 0;
86 86