Fix implicit function declaration

git-svn: trunk@2569
remotes/push_mirror/metadata
aCaB 19 years ago
parent 814c4a959f
commit ad3c01bf16
  1. 5
      clamav-devel/ChangeLog
  2. 3
      clamav-devel/clamd/localserver.c
  3. 3
      clamav-devel/clamd/tcpserver.c
  4. 1
      clamav-devel/libclamav/filetypes.c
  5. 1
      clamav-devel/libclamav/unrar/unrar15.c
  6. 1
      clamav-devel/libclamav/unrar/unrar20.c

@ -1,3 +1,8 @@
Wed Dec 20 16:30:49 CET 2006 (acab)
-----------------------------------
* clamd, libclamav: Fix implicit function declaration
reported by Stephen Gran <steve*lobefin.net>
Wed Dec 20 14:56:12 GMT 2006 (njh)
----------------------------------
* libclamav/mbox.c, clamav-milter: Fix compilation error from new clamav.h

@ -28,6 +28,9 @@
#include <sys/stat.h>
#include <sys/un.h>
#include <errno.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include "libclamav/clamav.h"

@ -28,6 +28,9 @@
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifndef C_WINDOWS
#include <sys/socket.h>
#include <netinet/in.h>

@ -26,6 +26,7 @@
#include <string.h>
#include <stdlib.h>
#include <ctype.h>
#include <sys/types.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

@ -22,6 +22,7 @@
*/
#include "unrar.h"
#include <string.h>
#define STARTL1 2
static unsigned int dec_l1[]={0x8000,0xa000,0xc000,0xd000,0xe000,0xea00,

@ -23,6 +23,7 @@
#include <string.h>
#include "others.h"
#include "unrar.h"
#include "unrar20.h"

Loading…
Cancel
Save