summaryrefslogtreecommitdiff
path: root/TAO/tao/GIOP_Message_Generator_Parser_10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/GIOP_Message_Generator_Parser_10.cpp')
-rw-r--r--TAO/tao/GIOP_Message_Generator_Parser_10.cpp8
1 files changed, 5 insertions, 3 deletions
diff --git a/TAO/tao/GIOP_Message_Generator_Parser_10.cpp b/TAO/tao/GIOP_Message_Generator_Parser_10.cpp
index 8a9d0e3e67c..31c663c8ad3 100644
--- a/TAO/tao/GIOP_Message_Generator_Parser_10.cpp
+++ b/TAO/tao/GIOP_Message_Generator_Parser_10.cpp
@@ -45,7 +45,8 @@ TAO_GIOP_Message_Generator_Parser_10::write_request_header (
// In this case we cannot recognise anything other than the Object
// key as the address disposition variable. But we do a sanity check
// anyway.
- const TAO_ObjectKey *key = spec.object_key ();
+ const TAO::ObjectKey *key = spec.object_key ();
+
if (key)
{
// Put in the object key
@@ -95,7 +96,8 @@ TAO_GIOP_Message_Generator_Parser_10::write_locate_request_header (
// In this case we cannot recognise anything other than the Object
// key as the address disposition variable. But we do a sanity check
// anyway.
- const TAO_ObjectKey *key = spec.object_key ();
+ const TAO::ObjectKey *key = spec.object_key ();
+
if (key)
{
// Everything is fine
@@ -367,7 +369,7 @@ TAO_GIOP_Message_Generator_Parser_10::parse_request_header (
request.requesting_principal (principal.in ()); */
- CORBA_OctetSeq oct_seq;
+ CORBA::OctetSeq oct_seq;
input >> oct_seq;
request.requesting_principal (oct_seq);
hdr_status = (CORBA::Boolean) input.good_bit ();