Hi all,

I have had to apply this small patch to both 0.80 and 0.81 so that everything would work as expected on Solaris-9. I have had no problems running "stock" versions on linux.

--<START>--
diff -rc clamav-0.81-orig/shared/output.c clamav-0.81/shared/output.c
*** clamav-0.81-orig/shared/output.c    Wed Jan 26 03:06:20 2005
--- clamav-0.81/shared/output.c Thu Jan 27 09:54:02 2005
***************
*** 115,120 ****
--- 115,124 ----
 #ifdef CL_THREAD_SAFE
       pthread_mutex_lock(&logg_mutex);
 #endif
+       if(!logg_fd)
+           if(strcmp(logg_file,"/dev/stderr")==0) logg_fd = stderr;
+       if(!logg_fd)
+           if(strcmp(logg_file,"/dev/stdout")==0) logg_fd = stdout;
       if(!logg_fd) {
           old_umask = umask(0037);
           if((logg_fd = fopen(logg_file, "a")) == NULL) {
--<END>--

Particularly, I kept getting the following error:

ERROR: Problem with internal logger. Please check the permissions on the /dev/stderr file.
ERROR: Can't open /dev/stderr in append mode (check permissions!).


The patch solved it, and I can now run CLAMD from a supervise script without problems.

Hope this helps...

--
Jorge Valdes
Intercom El Salvador
[EMAIL PROTECTED]


_______________________________________________ http://lists.clamav.net/cgi-bin/mailman/listinfo/clamav-users

Reply via email to