diff options
author | Mark Spruiell <mes@zeroc.com> | 2001-12-01 02:45:23 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2001-12-01 02:45:23 +0000 |
commit | 2af74c0da2e7a2e623ba4d7cd423af524044c69d (patch) | |
tree | 16a47e426e008a8b1ea8875631d35bfe37c83d9b /cpp/src/Ice/Endpoint.cpp | |
parent | minor edits (diff) | |
download | ice-2af74c0da2e7a2e623ba4d7cd423af524044c69d.tar.bz2 ice-2af74c0da2e7a2e623ba4d7cd423af524044c69d.tar.xz ice-2af74c0da2e7a2e623ba4d7cd423af524044c69d.zip |
bug fix
Diffstat (limited to 'cpp/src/Ice/Endpoint.cpp')
-rw-r--r-- | cpp/src/Ice/Endpoint.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Endpoint.cpp b/cpp/src/Ice/Endpoint.cpp index 9059ebb68c9..83a35e0a535 100644 --- a/cpp/src/Ice/Endpoint.cpp +++ b/cpp/src/Ice/Endpoint.cpp @@ -973,7 +973,7 @@ string IceInternal::UdpEndpoint::toString() const { ostringstream s; - s << "tcp"; + s << "udp"; if (_host != getLocalHost(true)) // TODO: Whether numeric or not should be configurable { s << " -h " << _host; |