summaryrefslogtreecommitdiff
path: root/TAO/tao/operation_details.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-04-20 12:40:50 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-04-20 12:40:50 +0000
commit1939a15774cacdf268c47b0bd7eb851ca4f149ab (patch)
tree8eaa757e26eff9e7ac20b3083429ff45aa4faefb /TAO/tao/operation_details.cpp
parent2f8a860d14adb56c57241b6e76a665e3835b1d04 (diff)
downloadATCD-1939a15774cacdf268c47b0bd7eb851ca4f149ab.tar.gz
ChangeLogTag: Thu Apr 20 11:50:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'TAO/tao/operation_details.cpp')
-rw-r--r--TAO/tao/operation_details.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/TAO/tao/operation_details.cpp b/TAO/tao/operation_details.cpp
index faccd9fe89c..7e505f26c58 100644
--- a/TAO/tao/operation_details.cpp
+++ b/TAO/tao/operation_details.cpp
@@ -6,6 +6,7 @@
#include "tao/Exception_Data.h"
#include "tao/SystemException.h"
#include "tao/Argument.h"
+#include "tao/CDR.h"
#include "ace/OS_NS_string.h"
@@ -62,6 +63,11 @@ TAO_Operation_Details::marshal_args (TAO_OutputCDR &cdr)
return false;
}
+ // Nothing else to fragment. We're also guaranteed to have
+ // data in the CDR stream since the operation was a marshaling
+ // operation, not a fragmentation operation.
+ cdr.more_fragments (false);
+
return true;
}