summaryrefslogtreecommitdiff
path: root/cpp/src/Ice/Outgoing.cpp
diff options
context:
space:
mode:
authorMarc Laukien <marc@zeroc.com>2002-02-08 17:55:35 +0000
committerMarc Laukien <marc@zeroc.com>2002-02-08 17:55:35 +0000
commit0e9473c636e8c348cb8cd1e755f5433267f85f92 (patch)
treebc60b87e72da53e14654e7c44ba28ac402f60f61 /cpp/src/Ice/Outgoing.cpp
parentadding jar target (diff)
downloadice-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.cpp4
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;
}