Merge branch 'master' of etorok@git.clam.sourcefire.com:/var/lib/git/clamav-devel

* 'master' of etorok@git.clam.sourcefire.com:/var/lib/git/clamav-devel:
  bb#1643
  update ignore files
0.96
Török Edvin 16 years ago
commit 966b72746a
  1. 15
      .gitignore
  2. 4
      ChangeLog
  3. 1
      clamav-milter/.gitignore
  4. 10
      clamav-milter/netcode.c
  5. 1
      clambc/.gitignore
  6. 1
      clamconf/.gitignore
  7. 1
      clamd/.gitignore
  8. 1
      clamdscan/.gitignore
  9. 1
      clamdtop/.gitignore
  10. 1
      clamscan/.gitignore
  11. 3
      docs/man/.gitignore
  12. 1
      freshclam/.gitignore
  13. 2
      libclamav/.gitignore
  14. 1
      sigtool/.gitignore
  15. 1
      test/.gitignore

15
.gitignore vendored

@ -0,0 +1,15 @@
*.[oa]
*.l[oa]
*~
*.swp
TAGS
Makefile
.deps
.libs
clamav-config*
libtool
stamp-h1
target.h
config.log
config.status
libclamav.pc

@ -1,3 +1,7 @@
Mon Jun 29 11:25:46 CEST 2009 (acab)
------------------------------------
* clamav-milter/netcode.c: Properly handle clamd disconnection (bb#1643)
Mon Jun 22 17:19:45 CEST 2009 (acab)
------------------------------------
* clamav-milter/whitelist.c: print failed whitelist filename

@ -0,0 +1 @@
clamav-milter

@ -148,6 +148,11 @@ int nc_send(int s, const void *buff, size_t len) {
struct timeval tv;
char er[256];
if(!res) {
logg("!Connection closed while sending data\n");
close(s);
return 1;
}
if(res!=-1) {
len-=res;
buf+=res;
@ -245,6 +250,11 @@ char *nc_recv(int s) {
}
res = recv(s, &buf[len], sizeof(buf) - len, 0);
if(!res) {
logg("!Connection closed while reading from socket\n");
close(s);
return NULL;
}
if(res==-1) {
char er[256];
strerror_print("!recv failed after successful select");

1
clambc/.gitignore vendored

@ -0,0 +1 @@
clambc

@ -0,0 +1 @@
clamconf

1
clamd/.gitignore vendored

@ -0,0 +1 @@
clamd

@ -0,0 +1 @@
clamdscan

@ -0,0 +1 @@
clamdtop

@ -0,0 +1 @@
clamscan

@ -0,0 +1,3 @@
*.1
*.5
*.8

@ -0,0 +1 @@
freshclam

@ -0,0 +1,2 @@
version.h
version.h.tmp

@ -0,0 +1 @@
sigtool

1
test/.gitignore vendored

@ -0,0 +1 @@
clam*
Loading…
Cancel
Save