Quellcode durchsuchen

Correction to socket error connection message

tags/v1.10.90
Andrew Yoder vor 3 Jahren
Ursprung
Commit
80bcb4330b
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  1. 1
    1
      common/network/UnixSocket.cxx

+ 1
- 1
common/network/UnixSocket.cxx Datei anzeigen

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

Laden…
Abbrechen
Speichern