diff options
Diffstat (limited to 'cpp/src/Ice/Incoming.cpp')
-rw-r--r-- | cpp/src/Ice/Incoming.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/Ice/Incoming.cpp b/cpp/src/Ice/Incoming.cpp index 8275c43ed4c..3f956cef439 100644 --- a/cpp/src/Ice/Incoming.cpp +++ b/cpp/src/Ice/Incoming.cpp @@ -32,7 +32,7 @@ IceInternal::Incoming::invoke(bool response) current.id.__read(&_is); _is.read(current.facet); _is.read(current.operation); - _is.read(current.isIdempotent); + _is.read(current.idempotent); Int sz; _is.readSize(sz); while(sz--) @@ -272,7 +272,7 @@ IceInternal::Incoming::invoke(bool response) // Rethrow, so that the caller can print a warning. ex.ice_throw(); } - catch (...) + catch(...) { if(locator && servant) { |