summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/ConnectionI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/Ice/ConnectionI.cpp')
-rw-r--r--cpp/src/Ice/ConnectionI.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/ConnectionI.cpp b/cpp/src/Ice/ConnectionI.cpp
index cb7fcfc5d3f..c0c1f55df22 100644
--- a/cpp/src/Ice/ConnectionI.cpp
+++ b/cpp/src/Ice/ConnectionI.cpp
@@ -2596,7 +2596,7 @@ Ice::ConnectionI::setState(State state)
dynamic_cast<const ObjectAdapterDeactivatedException*>(&ex) ||
(dynamic_cast<const ConnectionLostException*>(&ex) && _state >= StateClosing)))
{
- _observer->failed(ex.ice_name());
+ _observer->failed(ex.ice_id());
}
}
}
@@ -2610,7 +2610,7 @@ Ice::ConnectionI::setState(State state)
dynamic_cast<const ObjectAdapterDeactivatedException*>(_exception.get()) ||
(dynamic_cast<const ConnectionLostException*>(_exception.get()) && _state >= StateClosing)))
{
- _observer->failed(_exception->ice_name());
+ _observer->failed(_exception->ice_id());
}
}
#endif