Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/net/tcpconnection.cc')
-rw-r--r--src/net/tcpconnection.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tcpconnection.cc b/src/net/tcpconnection.cc
index 9eaba1f..92bc3d2 100644
--- a/src/net/tcpconnection.cc
+++ b/src/net/tcpconnection.cc
@@ -142,7 +142,7 @@ void TCPConnection::receive(std::string &msg)
memset(recvbuf, '\0', sizeof(recvbuf));
bytes_received = ::recv(tcpconnection_fd, recvbuf, msglen, 0);
if (bytes_received == 0) {
- con_print << "Server disconnected.";
+ con_print << "Disconnected.";
abort();
return;
} else if (bytes_received < 0) {