--------------------- PatchSet 5359 Date: 2002/10/13 03:11:56 Author: adri Branch: commloops Tag: (none) Log: Remove an unneeded commSetSelect(). when waisStart() is called, a valid and connect()ed server fd should already exist. Members: src/wais.c:1.8.22.3->1.8.22.4 Index: squid/src/wais.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/wais.c,v retrieving revision 1.8.22.3 retrieving revision 1.8.22.4 diff -u -r1.8.22.3 -r1.8.22.4 --- squid/src/wais.c 9 Oct 2002 13:46:29 -0000 1.8.22.3 +++ squid/src/wais.c 13 Oct 2002 03:11:56 -0000 1.8.22.4 @@ -1,6 +1,6 @@ /* - * $Id: wais.c,v 1.8.22.3 2002/10/09 13:46:29 adri Exp $ + * $Id: wais.c,v 1.8.22.4 2002/10/13 03:11:56 adri Exp $ * * DEBUG: section 24 WAIS Relay * AUTHOR: Harvest Derived @@ -235,6 +235,6 @@ waisState->fwd = fwd; comm_add_close_handler(waisState->fd, waisStateFree, waisState); storeLockObject(entry); - commSetSelect(fd, COMM_SELECT_WRITE, waisSendRequest, waisState, 0); commSetTimeout(fd, Config.Timeout.read, waisTimeout, waisState); + waisSendRequest(fd, waisState); }