summaryrefslogtreecommitdiff
path: root/csharp/src
diff options
context:
space:
mode:
authorJose <jose@zeroc.com>2019-12-05 16:35:39 +0100
committerJose <jose@zeroc.com>2019-12-05 16:35:39 +0100
commitd8e01792baa14acb99fd0503839deef79e149a68 (patch)
tree3cf359c4f4b3b60384ee2e17802f5332a5b8baa1 /csharp/src
parentIgnore null locator replies (diff)
downloadice-d8e01792baa14acb99fd0503839deef79e149a68.tar.bz2
ice-d8e01792baa14acb99fd0503839deef79e149a68.tar.xz
ice-d8e01792baa14acb99fd0503839deef79e149a68.zip
Add missing break after locating IPEndpointInfo
Diffstat (limited to 'csharp/src')
-rw-r--r--csharp/src/Ice/WSEndpoint.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/csharp/src/Ice/WSEndpoint.cs b/csharp/src/Ice/WSEndpoint.cs
index 0dcd14271ba..1b29946739d 100644
--- a/csharp/src/Ice/WSEndpoint.cs
+++ b/csharp/src/Ice/WSEndpoint.cs
@@ -195,6 +195,7 @@ namespace IceInternal
{
Ice.IPEndpointInfo ipInfo = (Ice.IPEndpointInfo)p;
host = ipInfo.host + ":" + ipInfo.port;
+ break;
}
}
_delegate.connectors_async(selType, new EndpointI_connectorsI(_instance, host, _resource, callback));