Hi

 Te problems is that you donīt have strlcpy function. You can resolve it
 adding it to ...../clamav-0.70/clamav-milter/clamav-milter.c

 size_t strlcpy(char *dst, const char *src, size_t dstsize) {
   if (strlen(src) < dstsize) {
     strcpy(dst,src);
   } else {
     strncpy(dst,src,dstsize-1);
     dst[dstsize-1] = '\0';
   }
   return strlen(src);
 }


 Roberto



-------------------------------------------------------
This SF.Net email is sponsored by: Oracle 10g
Get certified on the hottest thing ever to hit the market... Oracle 10g.
Take an Oracle 10g class now, and we'll give you the exam FREE.
http://ads.osdn.com/?ad_id149&alloc_id66&op=click
_______________________________________________
Clamav-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/clamav-users

Reply via email to