--------------------- PatchSet 5375 Date: 2002/10/14 07:00:59 Author: adri Branch: commloops Tag: (none) Log: comm_old_listen() doesn't exist anymore. Members: src/ftp.c:1.20.10.7->1.20.10.8 src/protos.h:1.49.4.13->1.49.4.14 Index: squid/src/ftp.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/ftp.c,v retrieving revision 1.20.10.7 retrieving revision 1.20.10.8 diff -u -r1.20.10.7 -r1.20.10.8 --- squid/src/ftp.c 9 Oct 2002 13:46:26 -0000 1.20.10.7 +++ squid/src/ftp.c 14 Oct 2002 07:00:59 -0000 1.20.10.8 @@ -1,6 +1,6 @@ /* - * $Id: ftp.c,v 1.20.10.7 2002/10/09 13:46:26 adri Exp $ + * $Id: ftp.c,v 1.20.10.8 2002/10/14 07:00:59 adri Exp $ * * DEBUG: section 9 File Transfer Protocol (FTP) * AUTHOR: Harvest Derived @@ -1839,7 +1839,7 @@ debug(9, 0) ("ftpOpenListenSocket: comm_open failed\n"); return -1; } - if (comm_old_listen(fd) < 0) { + if (comm_listen(fd) < 0) { comm_close(fd); return -1; } Index: squid/src/protos.h =================================================================== RCS file: /cvsroot/squid-sf//squid/src/protos.h,v retrieving revision 1.49.4.13 retrieving revision 1.49.4.14 diff -u -r1.49.4.13 -r1.49.4.14 --- squid/src/protos.h 6 Oct 2002 07:12:21 -0000 1.49.4.13 +++ squid/src/protos.h 14 Oct 2002 07:01:18 -0000 1.49.4.14 @@ -1,6 +1,6 @@ /* - * $Id: protos.h,v 1.49.4.13 2002/10/06 07:12:21 rbcollins Exp $ + * $Id: protos.h,v 1.49.4.14 2002/10/14 07:01:18 adri Exp $ * * * SQUID Web Proxy Cache http://www.squid-cache.org/ @@ -172,7 +172,6 @@ extern void commConnectStart(int fd, const char *, u_short, CNCB *, void *); extern int comm_connect_addr(int sock, const struct sockaddr_in *); extern void comm_init(void); -extern int comm_old_listen(int sock); extern int comm_open(int, int, struct in_addr, u_short port, int, const char *note); extern int comm_openex(int, int, struct in_addr, u_short, int, unsigned char TOS, const char *); extern u_short comm_local_port(int fd);