From: serassio <> Date: Mon, 18 Feb 2008 02:34:44 +0000 (+0000) Subject: Windows Port: call fdc_open() when opening IPC sockets. X-Git-Tag: SQUID_3_0_STABLE2~61 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0e363f6d5afbfce68ae599c7269e12600b71dbd7;p=thirdparty%2Fsquid.git Windows Port: call fdc_open() when opening IPC sockets. --- diff --git a/src/ipc_win32.cc b/src/ipc_win32.cc index 905f4f8327..b89b90918f 100755 --- a/src/ipc_win32.cc +++ b/src/ipc_win32.cc @@ -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 @@ -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) {