]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Windows Port: call fdc_open() when opening IPC sockets.
authorserassio <>
Mon, 18 Feb 2008 02:34:44 +0000 (02:34 +0000)
committerserassio <>
Mon, 18 Feb 2008 02:34:44 +0000 (02:34 +0000)
src/ipc_win32.cc

index 905f4f8327cb8c7f3517a4c8bd43090e47424e04..b89b90918fcb4a8988f26b30079672720258e94b 100755 (executable)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: ipc_win32.cc,v 1.4 2007/04/30 16:56:09 wessels Exp $
+ * $Id: ipc_win32.cc,v 1.4.4.1 2008/02/17 19:34:44 serassio Exp $
  *
  * DEBUG: section 54    Windows Interprocess Communication
  * AUTHOR: Andrey Shorin <tolsty@tushino.com>
@@ -411,7 +411,7 @@ ipc_thread_1(void *in_params)
         debugs(54, 3, "ipcCreate: CHILD accepted new FD " << fd);
         comm_close(crfd);
         snprintf(buf1, 8191, "%s CHILD socket", prog);
-        fd_open(fd, FD_SOCKET, buf1);
+        fdc_open(fd, FD_SOCKET, buf1);
         fd_table[fd].flags.ipc = 1;
         cwfd = crfd = fd;
     } else if (type == IPC_UDP_SOCKET) {