diff options
Diffstat (limited to 'cpp/src/Ice/Outgoing.cpp')
-rw-r--r-- | cpp/src/Ice/Outgoing.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Outgoing.cpp b/cpp/src/Ice/Outgoing.cpp index d36d52e3134..647dab515dc 100644 --- a/cpp/src/Ice/Outgoing.cpp +++ b/cpp/src/Ice/Outgoing.cpp @@ -160,7 +160,7 @@ IceInternal::Outgoing::invoke() throw NonRepeatable(*_exception.get()); } - if (_state == StateException) + if (_state == StateUserException) { return false; } @@ -236,7 +236,7 @@ IceInternal::Outgoing::finished(BasicStream& is) // oneway requests as blobs. // _is.startReadEncaps(); - _state = StateException; + _state = StateUserException; break; } |