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)
The following reply was made to PR pkg/30921; it has been noted by GNATS.
From: SODA Noriyuki <soda%sra.co.jp@localhost>
To: gnats-bugs%NetBSD.org@localhost
Cc: pkgsrc-bugs%NetBSD.org@localhost
Subject: Re: pkg/30921: tsocks doesn't work with tnftp client (patch included)
Date: Sat, 6 Aug 2005 03:01:35 +0900 (JST)
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