I found that for me, the cause was the stat function was failing on some files. I couldn't see any reason why, but this fixed it:

mercury:~# diff syslogd-listfiles-old /usr/sbin/syslogd-listfiles
128a129
        my @fstat = stat $file;
131c132
< || (!$opt_ign_size && ((stat $file)[7] >= $opt_large) && $opt_daily)
---
|| (!$opt_ign_size && (@fstat && $fstat[7] >= $opt_large) && $opt_daily)
mercury:~#


Adam



--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to