pkgsrc-Bugs archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
Re: pkg/30921: tsocks doesn't work with tnftp client (patch included)
Second thought...
>>>>> On Fri, 5 Aug 2005 17:19:00 +0000 (UTC),
SODA Noriyuki <soda%NetBSD.org@localhost> said:
> if (conn->selectevents & WRITE) {
> ! ufds[i].revents |= POLLOUT;
> nevents++;
It's better to use the following change:
ufds[i].revents |= (conn->selectevents & WRITE);
instead of above "ufds[i].revents |= POLLOUT;".
--
soda
Home |
Main Index |
Thread Index |
Old Index