From d3c5c8cfa2cd8c9dfd83e22f35702f5fb7d9f7ac Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 14 Dec 2005 18:04:30 +0000 Subject: Fixups git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@2432 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 2 +- src/inspircd_io.cpp | 7 ++++--- 2 files changed, 5 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index cc4964ca8..956dda1f0 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -74,7 +74,7 @@ std::vector module_sockets; extern int MODCOUNT; int openSockfd[MAXSOCKS]; -struct sockaddr_in client,server; +sockaddr_in client,server; socklen_t length; extern InspSocket* socket_ref[65535]; diff --git a/src/inspircd_io.cpp b/src/inspircd_io.cpp index 2b5a880cb..a033f0df6 100644 --- a/src/inspircd_io.cpp +++ b/src/inspircd_io.cpp @@ -1027,6 +1027,7 @@ int OpenTCPSocket (void) int BindPorts() { char configToken[MAXBUF], Addr[MAXBUF], Type[MAXBUF]; + sockaddr_in client,server; int clientportcount = 0; for (int count = 0; count < Config->ConfValueEnum("bind",&Config->config_f); count++) { @@ -1043,9 +1044,9 @@ int BindPorts() log(DEBUG,"InspIRCd: startup: read binding %s:%s [%s] from config",Addr,configToken, Type); } } - portCount = clientportcount; + int PortCount = clientportcount; - for (int count = 0; count < portCount; count++) + for (int count = 0; count < PortCount; count++) { if ((openSockfd[boundPortCount] = OpenTCPSocket()) == ERROR) { @@ -1066,7 +1067,7 @@ int BindPorts() if (!boundPortCount) { log(DEFAULT,"InspIRCd: startup: no ports bound, bailing!"); - printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)portCount); + printf("\nERROR: Was not able to bind any of %lu ports! Please check your configuration.\n\n", (unsigned long)PortCount); return (ERROR); } -- cgit v1.2.3