diff options
author | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2005-12-09 11:22:45 +0000 |
commit | fb3ac00f0ba2e4ec357d6c801e1b37c64ba6ea81 (patch) | |
tree | e7c7f79755f5195e5420ca658f205df55395ad57 /cpp/src/Ice/Reference.cpp | |
parent | update contents of demo definition files (diff) | |
download | ice-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.cpp | 2 |
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; } |