Fixed signature counter in clamd.

git-svn: trunk@94
remotes/push_mirror/metadata
Tomasz Kojm 22 years ago
parent 448591fc7d
commit 2a785df779
  1. 4
      clamav-devel/ChangeLog
  2. 9
      clamav-devel/README
  3. 3
      clamav-devel/clamd/server.c

@ -1,3 +1,7 @@
Tue Nov 4 00:37:03 CET 2003 (tk)
---------------------------------
* clamd: fixed signature counter (thanks to Dirk Kraemer)
Sun Nov 2 01:07:46 CET 2003 (tk)
---------------------------------
* freshclam: do not use IP address in database request (thanks to Luca

@ -42,8 +42,13 @@ here may not be available in the binary packages.
Erick Ivaan Lopez Carreon
New list of compatible software (see clamdoc.pdf for details):
+ IVS Milter
+ smtp-vilter
+ scanexi
+ Mail::ClamAV
+ OpenAntiVirus samba-vscan

@ -119,7 +119,7 @@ void *threadwatcher(void *arg)
sigset_t sigset;
int i, j, ret, maxwait;
unsigned long int timer = 0;
unsigned int timeout, threads, virnum, selfchk;
unsigned int timeout, threads, selfchk;
short int need_wait = 0, do_loop = 0, db_problem = 0;
const char *dbdir;
struct cl_stat dbstat;
@ -322,6 +322,7 @@ void *threadwatcher(void *arg)
logg("Reading databases from %s\n", dbdir);
virnum = 0;
if((ret = cl_loaddbdir(dbdir, &*thwarg->root, &virnum))) {
logg("!%s\n", cl_strerror(ret));
kill(progpid, SIGTERM);

Loading…
Cancel
Save