On Mon, 21 May 2007, Marco d'Itri wrote:
Almost certainly a kernel bug, check the kernel log.
Seems to be an obvious bug in the upstream release. One really shouldn't
do:
(p = strrchr(argv[0], '/')) ? p++ : argv[0];
which essentially means
if ()
p++;
else
;
The assignment of arvg[0] to p is missing if no '/'s are found. Could
basename() be used instead?
-- Best regards, Mikko Ylinen -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

