diff options
author | Benoit Foucher <benoit@zeroc.com> | 2013-01-24 10:07:46 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2013-01-24 10:07:46 +0100 |
commit | 566ae61db91d991dbaf38d280d285faddddce5a6 (patch) | |
tree | 4c014a63f061e29ee753e74d77bad414df801fd5 /cpp/test/Ice/stream/Client.cpp | |
parent | minor fixes to doc files (diff) | |
download | ice-566ae61db91d991dbaf38d280d285faddddce5a6.tar.bz2 ice-566ae61db91d991dbaf38d280d285faddddce5a6.tar.xz ice-566ae61db91d991dbaf38d280d285faddddce5a6.zip |
More fixes for ICE-4841 - changed createInputStream with bool parameter to wrapInputStream
Diffstat (limited to 'cpp/test/Ice/stream/Client.cpp')
-rw-r--r-- | cpp/test/Ice/stream/Client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/test/Ice/stream/Client.cpp b/cpp/test/Ice/stream/Client.cpp index 6d581bc6c6b..f8c72f07ebe 100644 --- a/cpp/test/Ice/stream/Client.cpp +++ b/cpp/test/Ice/stream/Client.cpp @@ -184,7 +184,7 @@ run(int, char**, const Ice::CommunicatorPtr& communicator) test(v); in->endEncapsulation(); - in = Ice::createInputStream(communicator, data, false); + in = Ice::wrapInputStream(communicator, data); in->startEncapsulation(); in->read(v); test(v); |