diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-10-13 16:00:20 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-10-13 16:01:39 +0200 |
commit | 4857bf4771b7f0b21a0f8b78045ff2a1009e0aab (patch) | |
tree | ac7b95048021b140913ec80911678cd24bf739c4 | |
parent | daa9f891831e53b0872f5b290ce2f009dd48de8f (diff) |
Remove no-op call to IncreaseOSBuffers() from BufferedSocket::BeginConnect()
-rw-r--r-- | src/inspsocket.cpp | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/inspsocket.cpp b/src/inspsocket.cpp index 3841c6147..81e61f051 100644 --- a/src/inspsocket.cpp +++ b/src/inspsocket.cpp @@ -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; } |