summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/uplink.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uplink.cpp b/src/uplink.cpp
index 085ef889b..f8841c58f 100644
--- a/src/uplink.cpp
+++ b/src/uplink.cpp
@@ -118,13 +118,13 @@ UplinkSocket::~UplinkSocket()
bool UplinkSocket::ProcessRead()
{
- BufferedSocket::ProcessRead();
+ bool b = BufferedSocket::ProcessRead();
for (Anope::string buf; (buf = this->GetLine()).empty() == false;)
{
Anope::Process(buf);
User::QuitUsers();
}
- return true;
+ return b;
}
void UplinkSocket::OnConnect()