summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Reference.cpp
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-12-09 11:22:45 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-12-09 11:22:45 +0000
commitfb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81 (patch)
treee7c7f79755f5195e5420ca658f205df55395ad57 /cpp/src/Ice/Reference.cpp
parentupdate contents of demo definition files (diff)
downloadice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.bz2
ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.tar.xz
ice-fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81.zip
Fixed DirectReference::getConnection() to not call toString()
Diffstat (limited to 'cpp/src/Ice/Reference.cpp')
-rw-r--r--cpp/src/Ice/Reference.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/Ice/Reference.cpp b/cpp/src/Ice/Reference.cpp
index 62af778e21e..a80d2f79d8c 100644
--- a/cpp/src/Ice/Reference.cpp
+++ b/cpp/src/Ice/Reference.cpp
@@ -506,7 +506,7 @@ IceInternal::FixedReference::getConnection(bool& compress) const
if(filteredConns.empty())
{
NoEndpointException ex(__FILE__, __LINE__);
- ex.proxy = toString();
+ ex.proxy = ""; // No stringified representation for fixed proxies
throw ex;
}