]> source.dussan.org Git - tigervnc.git/commitdiff
Correction to socket error connection message 1063/head
authorAndrew Yoder <ayoder770@gmail.com>
Wed, 15 Jul 2020 23:12:18 +0000 (19:12 -0400)
committerAndrew Yoder <ayoder770@gmail.com>
Wed, 15 Jul 2020 23:12:18 +0000 (19:12 -0400)
common/network/UnixSocket.cxx

index bfabc141d42fb4e3a22adb1f287e8272af4c1458..f8b86182aab7b6a6f8b956215d60c6002e4ba2b8 100644 (file)
@@ -69,7 +69,7 @@ UnixSocket::UnixSocket(const char *path)
   }
 
   if (result == -1)
-    throw SocketException("unable connect to socket", err);
+    throw SocketException("unable to connect to socket", err);
 
   setFd(sock);
 }