From: Automatic source maintenance Date: Wed, 22 May 2013 00:13:36 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_4_0_1~118 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=326c5c411389495facb79c2acac94086b68b9f80;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/comm/ModKqueue.cc b/src/comm/ModKqueue.cc index 40b51a2e52..1a4d4248f9 100644 --- a/src/comm/ModKqueue.cc +++ b/src/comm/ModKqueue.cc @@ -199,9 +199,9 @@ Comm::SetSelect(int fd, unsigned int type, PF * handler, void *client_data, time if (type & COMM_SELECT_READ) { if (F->flags.read_pending) kq_update_events(fd, EVFILT_WRITE, handler); - + kq_update_events(fd, EVFILT_READ, handler); - + F->read_handler = handler; F->read_data = client_data; }