From c0eba78b86232bf8c2ef886e0a35808ab09df25f Mon Sep 17 00:00:00 2001 From: Guillermo Rodriguez Garcia Date: Wed, 9 Feb 2000 22:53:26 +0000 Subject: [PATCH] Stupid bug: using LastError() instead of Error() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@5938 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/protocol.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/common/protocol.cpp b/src/common/protocol.cpp index eab8724ef4..542752e318 100644 --- a/src/common/protocol.cpp +++ b/src/common/protocol.cpp @@ -69,7 +69,8 @@ bool wxProtocol::Reconnect() { wxIPV4address addr; - if (!GetPeer(addr)) { + if (!GetPeer(addr)) + { Close(); return FALSE; } @@ -77,6 +78,7 @@ bool wxProtocol::Reconnect() return FALSE; if (!Connect(addr)) return FALSE; + return TRUE; } @@ -88,7 +90,7 @@ wxProtocolError GetLine(wxSocketBase *sock, wxString& result) { bool found; avail = sock->Read(tmp_buf, PROTO_BSIZE).LastCount(); - if (sock->LastError() != 0 || avail == 0) + if (sock->Error() || avail == 0) return wxPROTO_NETERR; memcpy(tmp_str, tmp_buf, avail); -- 2.45.2