From 209712b18f41a0467c9cdbf6817122e9ba4cce2e Mon Sep 17 00:00:00 2001 From: Alex Tanskanen Date: Thu, 5 Mar 2020 09:35:35 +0100 Subject: [PATCH] Fix typo in SocketException message --- common/network/TcpSocket.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/network/TcpSocket.cxx b/common/network/TcpSocket.cxx index ce0267c..a20030a 100644 --- a/common/network/TcpSocket.cxx +++ b/common/network/TcpSocket.cxx @@ -220,7 +220,7 @@ TcpSocket::TcpSocket(const char *host, int port) if (err == 0) throw Exception("No useful address for host"); else - throw SocketException("unable connect to socket", err); + throw SocketException("unable to connect to socket", err); } // Take proper ownership of the socket