fix compiler warning

git-svn: trunk@5068
0.95
Török Edvin 16 years ago
parent 2bc065d467
commit 4dec1e4b01
  1. 4
      ChangeLog
  2. 1
      libclamav/others.h
  3. 1
      libclamav/regex/regex.h

@ -1,3 +1,7 @@
Fri May 15 15:10:59 EEST 2009 (edwin)
-------------------------------------
* libclamav/others.h, libclamav/regex/regex.h: fix compiler warning
Fri May 15 14:29:19 EEST 2009 (edwin)
-------------------------------------
* libclamav/others.h, libclamav/others_common.c,

@ -383,7 +383,6 @@ const char* cli_ctime(const time_t *timep, char *buf, const size_t bufsize);
int cli_checklimits(const char *, cli_ctx *, unsigned long, unsigned long, unsigned long);
int cli_updatelimits(cli_ctx *, unsigned long);
unsigned long cli_getsizelimit(cli_ctx *, unsigned long);
int cli_regcomp(regex_t *preg, const char *pattern, int cflags);
int cli_matchregex(const char *str, const char *regex);
/* symlink behaviour */

@ -94,6 +94,7 @@ typedef struct {
#define REG_BACKR 02000 /* force use of backref code */
int cli_regcomp_real(regex_t *, const char *, int);
int cli_regcomp(regex_t *, const char *, int);
size_t cli_regerror(int, const regex_t *, char *, size_t);
int cli_regexec(const regex_t *, const char *, size_t, regmatch_t [], int);
void cli_regfree(regex_t *);

Loading…
Cancel
Save