diff options
Diffstat (limited to 'cpp/test/Ice/background/EndpointFactory.cpp')
-rw-r--r-- | cpp/test/Ice/background/EndpointFactory.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/test/Ice/background/EndpointFactory.cpp b/cpp/test/Ice/background/EndpointFactory.cpp index 1fbe25930de..a13efc6743b 100644 --- a/cpp/test/Ice/background/EndpointFactory.cpp +++ b/cpp/test/Ice/background/EndpointFactory.cpp @@ -38,15 +38,15 @@ EndpointFactory::create(vector<string>& args, bool oaEndpoint) const } IceInternal::EndpointIPtr -EndpointFactory::read(IceInternal::BasicStream* s) const +EndpointFactory::read(Ice::InputStream* s) const { short type; s->read(type); assert(type == _factory->type()); - s->startReadEncaps(); + s->startEncapsulation(); IceInternal::EndpointIPtr endpoint = ICE_MAKE_SHARED(EndpointI, _factory->read(s)); - s->endReadEncaps(); + s->endEncapsulation(); return endpoint; } |