in reply to Problems with IO::Select

shmem pointed out that
chmod 777, $address;  # sticky + u=rw + g=x + o=x
should be
chmod 0777, $address;  # u=rwx + g=rwx + o=rwx
Read chmod.

Replies are listed 'Best First'.
Re^2: Problems with IO::Select
by dirtdart (Beadle) on Jul 02, 2006 at 23:30 UTC
    Thank you, but that didn't fix it either.