diff options
author | Alex Tanskanen <aleta@cendio.com> | 2020-03-05 09:35:35 +0100 |
---|---|---|
committer | Alex Tanskanen <aleta@cendio.com> | 2020-03-12 15:46:31 +0100 |
commit | 01ca961b0cf009a6f1e4603ad84b09d475b9f515 (patch) | |
tree | e1846a408917933365731051428d2fde29f314e4 | |
parent | fb8131f7a2e93b67887e0b0a3b308a6905d95746 (diff) | |
download | tigervnc-01ca961b0cf009a6f1e4603ad84b09d475b9f515.tar.gz tigervnc-01ca961b0cf009a6f1e4603ad84b09d475b9f515.zip |
Fix typo in SocketException message
-rw-r--r-- | common/network/TcpSocket.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/network/TcpSocket.cxx b/common/network/TcpSocket.cxx index 9e277cbb..f5d92e25 100644 --- a/common/network/TcpSocket.cxx +++ b/common/network/TcpSocket.cxx @@ -202,7 +202,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 |