0.8-rc3 doesn't work. The error is
"Path name too long for new path in <foo>"
Have a look at metalog.c, line 788:
if (!strftime(...) == 0)
That should either be
if (strftime(...) != 0)
or
if (!strftime(...))
because the function returns 0 on error.
This error was introduced in revision 105.
--
Mark Wagner ma...@la...
|