From 69ae63ecd25c63b4f6d446fae28af9c8d1caac4d Mon Sep 17 00:00:00 2001 From: brain Date: Wed, 19 Jul 2006 15:03:26 +0000 Subject: Change stats recv/send to double, so they can hold truly massive numbers of transferred bytes (they would overflow after about 6 weeks on a busy net otherwise) Fix some warnings git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4450 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/inspircd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/inspircd.cpp') diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 2f08750bd..b9cd9f36c 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -923,7 +923,7 @@ int InspIRCd::Run() /* Add the listening sockets used for client inbound connections * to the socket engine */ - for (int count = 0; count < stats->BoundPortCount; count++) + for (unsigned long count = 0; count < stats->BoundPortCount; count++) SE->AddFd(Config->openSockfd[count],true,X_LISTEN); this->WritePID(Config->PID); -- cgit v1.2.3