Browse Source

Correction to socket error connection message

tags/v1.10.90
Andrew Yoder 3 years ago
parent
commit
80bcb4330b
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      common/network/UnixSocket.cxx

+ 1
- 1
common/network/UnixSocket.cxx 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);
}

Loading…
Cancel
Save