--------------------- PatchSet 11533 Date: 2007/07/17 20:34:28 Author: hno Branch: HEAD Tag: (none) Log: Fix the select loop again. Got broken by the addition of commOpen/Close (devpoll) The comm_select loop was incorrectly updated when the commOpen/commClose calls was added, defining commClose twice.. this renames the first one (the empty one) to commOpen, like it should be.. Members: src/comm_select.c:1.81->1.82 Index: squid/src/comm_select.c =================================================================== RCS file: /cvsroot/squid/squid/src/comm_select.c,v retrieving revision 1.81 retrieving revision 1.82 diff -u -r1.81 -r1.82 --- squid/src/comm_select.c 20 May 2007 13:45:11 -0000 1.81 +++ squid/src/comm_select.c 17 Jul 2007 20:34:28 -0000 1.82 @@ -1,6 +1,6 @@ /* - * $Id: comm_select.c,v 1.81 2007/05/20 13:45:11 adrian Exp $ + * $Id: comm_select.c,v 1.82 2007/07/17 20:34:28 hno Exp $ * * DEBUG: section 5 Socket Functions * @@ -94,7 +94,7 @@ } void -commClose(int fd) +commOpen(int fd) { }