summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Object.cpp
diff options
context:
space:
mode:
authorMatthew Newhook <matthew@zeroc.com>2001-11-27 14:09:19 +0000
committerMatthew Newhook <matthew@zeroc.com>2001-11-27 14:09:19 +0000
commit328b6c574d858e70fbf08c1c956e7dce5743e2cb (patch)
tree35ac7e84e8ad2c334b1b14699600b813e2775ffd /cpp/src/Ice/Object.cpp
parentstring/string test (diff)
downloadice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.tar.bz2
ice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.tar.xz
ice-328b6c574d858e70fbf08c1c956e7dce5743e2cb.zip
Bug fixes. Added name to NoSuchTopic & TopicExists. Attempting to subscribe
to a non-existent topic throws exception.
Diffstat (limited to 'cpp/src/Ice/Object.cpp')
-rw-r--r--cpp/src/Ice/Object.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Object.cpp b/cpp/src/Ice/Object.cpp
index 8fe66e03a3c..08ce2d3f57b 100644
--- a/cpp/src/Ice/Object.cpp
+++ b/cpp/src/Ice/Object.cpp
@@ -245,11 +245,11 @@ Ice::Object::ice_findFacet(const string& name)
}
DispatchStatus
-Ice::Blobject::__dispatch(Incoming& in, const string& identity, const string& facet, const string& operation)
+Ice::Blobject::__dispatch(Incoming& in, const string& id, const string& facet, const string& operation)
{
vector<Byte> blob;
Int sz = in.is()->getReadEncapsSize();
in.is()->readBlob(blob, sz);
- ice_invokeIn(identity, facet, operation, blob);
+ ice_invokeIn(id, facet, operation, blob);
return ::IceInternal::DispatchOK;
}