Avinash,
In the file log.c
  
-       if (fd != 1 && fd != 2)
+       if (fd != 1 && fd != STDERR_FILENO)
                startd_close(fd);
                

Shouldn't it be
  if (fd != STDOUT_FILENO && fd != STDERR_FILENO)
           startd_close(fd);


regards,
Madhu
 
 
This message posted from opensolaris.org

Reply via email to