Correction to socket error connection message

This commit is contained in:
Andrew Yoder 2020-07-15 19:12:18 -04:00 committed by Lauri Kasanen
parent 80a637c793
commit c312417d81

View 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);
}