Remove no-op call to IncreaseOSBuffers() from BufferedSocket::BeginConnect()

This commit is contained in:
attilamolnar 2012-10-13 16:00:20 +02:00
parent daa9f89183
commit 4857bf4771

View File

@ -122,8 +122,6 @@ BufferedSocketError BufferedSocket::BeginConnect(const irc::sockets::sockaddrs&
this->Timeout = new SocketTimeout(this->GetFd(), this, timeout, ServerInstance->Time());
ServerInstance->Timers->AddTimer(this->Timeout);
IncreaseOSBuffers(fd);
ServerInstance->Logs->Log("SOCKET", DEBUG,"BufferedSocket::DoConnect success");
return I_ERR_NONE;
}