Subject: Re: pkg/30921: tsocks doesn't work with tnftp client (patch included)
To: None <gnats-bugs@NetBSD.org>
From: SODA Noriyuki <soda@sra.co.jp>
List: pkgsrc-bugs
Date: 08/06/2005 03:01:35
Second thought...

>>>>> On Fri,  5 Aug 2005 17:19:00 +0000 (UTC),
	SODA Noriyuki <soda@NetBSD.org> 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