diff options
author | Marc Laukien <marc@zeroc.com> | 2002-02-08 17:55:35 +0000 |
---|---|---|
committer | Marc Laukien <marc@zeroc.com> | 2002-02-08 17:55:35 +0000 |
commit | 0e9473c636e8c348cb8cd1e755f5433267f85f92 (patch) | |
tree | bc60b87e72da53e14654e7c44ba28ac402f60f61 /cpp/src/Ice/Outgoing.cpp | |
parent | adding jar target (diff) | |
download | ice-0e9473c636e8c348cb8cd1e755f5433267f85f92.tar.bz2 ice-0e9473c636e8c348cb8cd1e755f5433267f85f92.tar.xz ice-0e9473c636e8c348cb8cd1e755f5433267f85f92.zip |
user exception routing bug fix
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; } |