summaryrefslogtreecommitdiff
path: root/TAO/TAO_IDL
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-15 23:34:11 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-11-15 23:34:11 +0000
commit45c5afb599218d544a97d61fc8b875eefb06170e (patch)
tree5446b32cf138f5ddfe965d624c23fc00a102b117 /TAO/TAO_IDL
parent0de64c746ec61d797d96b6c7b09337c3cd71c84b (diff)
downloadATCD-45c5afb599218d544a97d61fc8b875eefb06170e.tar.gz
ChangeLogTag:Sat Nov 15 17:33:15 1997 Carlos O'Ryan <coryan@macarena.cs.wustl.edu>
Diffstat (limited to 'TAO/TAO_IDL')
-rw-r--r--TAO/TAO_IDL/be/be_operation.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/TAO/TAO_IDL/be/be_operation.cpp b/TAO/TAO_IDL/be/be_operation.cpp
index 50ae3a68e01..a43451c5379 100644
--- a/TAO/TAO_IDL/be/be_operation.cpp
+++ b/TAO/TAO_IDL/be/be_operation.cpp
@@ -581,8 +581,8 @@ be_operation::gen_server_skeletons (void)
// parse the arguments
*ss << "// parse the arguments" << nl;
- *ss << "_tao_server_request.params (nvlist, _tao_enviroment);" << nl;
- *ss << "if (_tao_enviroment.exception ()) return;" << nl;
+ *ss << "_tao_server_request.params (nvlist, _tao_environment);" << nl;
+ *ss << "if (_tao_environment.exception ()) return;" << nl;
// make the upcall
*ss << "impl = (" << intf->full_skel_name () << "_ptr) _tao_object_reference->get_subclass ();"
@@ -640,7 +640,7 @@ be_operation::gen_server_skeletons (void)
-1);
}
cg->pop ();
- *ss << "_tao_enviroment);" << nl;
+ *ss << "_tao_environment);" << nl;
// if there is any return type, send it via the ServerRequest
if (!bpd || (bpd->pt () != AST_PredefinedType::PT_void))
@@ -653,14 +653,14 @@ be_operation::gen_server_skeletons (void)
{
*ss << "result = new CORBA::Any (" << rt->tc_name () <<
", retval, 0); // ORB does not own" << nl;
- *ss << "_tao_server_request.result (result, _tao_enviroment);" << nl;
+ *ss << "_tao_server_request.result (result, _tao_environment);" << nl;
}
break;
default:
{
*ss << "result = new CORBA::Any (" << rt->tc_name () <<
", retval, 1); // ORB owns" << nl;
- *ss << "_tao_server_request.result (result, _tao_enviroment);" << nl;
+ *ss << "_tao_server_request.result (result, _tao_environment);" << nl;
}
}
#if 0