From: Volker Lendecke Date: Tue, 12 Mar 2024 14:06:33 +0000 (+0100) Subject: lib: Remove an obsolete comment X-Git-Tag: tdb-1.4.11~1076 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc7c12e5d5c74812e089b7f4bc5b0c78553ccf24;p=thirdparty%2Fsamba.git lib: Remove an obsolete comment Signed-off-by: Volker Lendecke Reviewed-by: Martin Schwenke Autobuild-User(master): Martin Schwenke Autobuild-Date(master): Wed Apr 17 09:01:34 UTC 2024 on atb-devel-224 --- diff --git a/lib/async_req/async_sock.c b/lib/async_req/async_sock.c index bdbefd162ac..795a2c63dba 100644 --- a/lib/async_req/async_sock.c +++ b/lib/async_req/async_sock.c @@ -144,13 +144,6 @@ struct tevent_req *async_connect_send( return tevent_req_post(req, ev); } - /* - * Note for historic reasons TEVENT_FD_WRITE is not enough - * to get notified for POLLERR or EPOLLHUP even if they - * come together with POLLOUT. That means we need to - * use TEVENT_FD_READ in addition until we have - * TEVENT_FD_ERROR. - */ state->fde = tevent_add_fd(ev, state, fd, TEVENT_FD_ERROR|TEVENT_FD_WRITE, async_connect_connected, req);