diff options
| author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-15 10:03:05 +0900 |
|---|---|---|
| committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-04-16 17:23:20 +0900 |
| commit | b7cd64b9220f245bcea522dca8e202bf9819529c (patch) | |
| tree | b010681362c4900fcd1ccbf28d788637b9d4f5ab /src/klammail/clamdmail.c | |
| parent | 891c41833121030e071b0d1f3a7d7d916e9d0293 (diff) | |
| download | klamav-b7cd64b9.tar.gz klamav-b7cd64b9.zip | |
Fix FTBFS causes by invalid casts. This resolves issue 37.r14.1.2
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 74b0e9077b3c7d56cfcedcbf0fd30dd9d2ab7d01)
Diffstat (limited to 'src/klammail/clamdmail.c')
| -rwxr-xr-x | src/klammail/clamdmail.c | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/klammail/clamdmail.c b/src/klammail/clamdmail.c index 287de48..c9694d7 100755 --- a/src/klammail/clamdmail.c +++ b/src/klammail/clamdmail.c @@ -35,9 +35,10 @@ #include <pwd.h> #include <clamav.h> -#include "options.h" #include "defaults.h" #include "memory.h" +#include "options.h" +#include "output.h" #include "../version.h" #include "../../config.h" @@ -75,6 +76,10 @@ struct s_info claminfo; short printinfected = 0; /* short int mprintf_stdout; */ +extern int client(const char *dirname, struct optstruct *opt, const char **virname); + +int spoolstdin(char *tmpnm, int fd, int ret, const char **virname, const char **bndrystore, struct optstruct *opt); + int clamdscan(struct optstruct *opt) { int ds, dms; @@ -94,7 +99,8 @@ int clamdscan(struct optstruct *opt) char buff[BUFFSIZE]; struct cl_node *trie = NULL; int threads = 0; - int fd, fdtmp, ret, no = 0; + int fd, fdtmp, ret; + unsigned int no = 0; unsigned long int size = 0; long double mb; const char *virname; @@ -175,7 +181,7 @@ int clamdscan(struct optstruct *opt) /* Clamd isn't running, scan the file ourselves */ - if((ret == 2)) { + if(ret == 2) { /* Clamd isn't running, start it so it is available next time. */ startclamd(opt); @@ -220,7 +226,7 @@ int clamdscan(struct optstruct *opt) options.general |= CL_SCAN_GENERAL_HEURISTICS; options.mail |= CL_SCAN_MAIL_PARTIAL_MESSAGE; ret = cl_scandesc(fd, tmpnm, &virname, &size, engine, &options ); - printf("scandesc returned: %i\n", cl_strerror(ret)); + printf("scandesc returned: %s\n", cl_strerror(ret)); if( ret == CL_VIRUS ) printf("virus found\n"); else @@ -233,7 +239,7 @@ int clamdscan(struct optstruct *opt) spoolstdin(tmpnm, fd, ret, &virname, &bndrystore, opt); - if((ret == 2)) + if(ret == 2) cl_engine_free(engine); unlink(tmpnm); @@ -241,7 +247,7 @@ int clamdscan(struct optstruct *opt) mexit(0); } -int spoolstdin(char *tmpnm, int fd, int ret, char **virname, const char **bndrystore, struct optstruct *opt) +int spoolstdin(char *tmpnm, int fd, int ret, const char **virname, const char **bndrystore, struct optstruct *opt) { int bytes; int i, j; |
