]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
c++ header change for commselect - missed it before
authorrobertc <>
Sun, 15 Sep 2002 21:00:44 +0000 (21:00 +0000)
committerrobertc <>
Sun, 15 Sep 2002 21:00:44 +0000 (21:00 +0000)
src/comm_select.cc

index 7fef8efbe6baec33335e41fbcbb5971d3b110e18..6ac186893541dc8fbeaf3bff17d9028cff335aa8 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: comm_select.cc,v 1.58 2002/09/15 06:23:28 adrian Exp $
+ * $Id: comm_select.cc,v 1.59 2002/09/15 15:00:44 robertc Exp $
  *
  * DEBUG: section 5     Socket Functions
  *
@@ -663,15 +663,15 @@ examine_select(fd_set * readfds, fd_set * writefds)
            F->timeout_handler,
            F->read_handler,
            F->write_handler);
-       for (ch = F->close_handler; ch; ch = ch->next)
+       for (ch = F->closeHandler; ch; ch = ch->next)
            debug(5, 0) (" close handler: %p\n", ch->handler);
-       if (F->close_handler) {
+       if (F->closeHandler) {
            commCallCloseHandlers(fd);
        } else if (F->timeout_handler) {
            debug(5, 0) ("examine_select: Calling Timeout Handler\n");
            F->timeout_handler(fd, F->timeout_data);
        }
-       F->close_handler = NULL;
+       F->closeHandler = NULL;
        F->timeout_handler = NULL;
        F->read_handler = NULL;
        F->write_handler = NULL;