SOCKS5: remove '###' from the error message

There's no reason for it to be there.

Pick-to: 6.5 6.7
Change-Id: I262c3499666e4f4fbcfbfffd17cbbcfcd798b100
Reviewed-by: Mårten Nordheim <marten.nordheim@qt.io>
bb10
Thiago Macieira 2024-05-02 10:44:37 -07:00
parent 0cd5eb895c
commit d44d19dd98
1 changed files with 1 additions and 1 deletions

View File

@ -1460,7 +1460,7 @@ qint64 QSocks5SocketEngine::read(char *data, qint64 maxlen)
//imitate remote closed
close();
setError(QAbstractSocket::RemoteHostClosedError,
"Remote host closed connection###"_L1);
"Remote host closed connection"_L1);
setState(QAbstractSocket::UnconnectedState);
return -1;
} else {