summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1998-02-13 21:54:26 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1998-02-13 21:54:26 +0000
commitaa7b2d908d34300495c02511df173e8610e04c3d (patch)
tree39e1ad437b1ab2a51d2b36d56aa1e0c3db375941
parent1a4fdbd1194eb8d0404b433caf32a0f0ffa6412d (diff)
downloadATCD-aa7b2d908d34300495c02511df173e8610e04c3d.tar.gz
*** empty log message ***
-rw-r--r--TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp21
1 files changed, 13 insertions, 8 deletions
diff --git a/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp b/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp
index 1ac9f2fbef7..47861d25b7c 100644
--- a/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp
+++ b/TAO/tests/Cubit/TAO/IDL_Cubit/svr.cpp
@@ -57,13 +57,15 @@ main (int argc, char *argv[])
{
TAO_TRY
{
- CORBA::ORB_var orb = CORBA::ORB_init (argc, argv, 0, TAO_TRY_ENV);
+ CORBA::ORB_var orb =
+ CORBA::ORB_init (argc, argv, 0, TAO_TRY_ENV);
+
TAO_CHECK_ENV;
// Initialize the Object Adapter
CORBA::Object_var poa_object =
- orb->resolve_initial_references("RootPOA");
- if (CORBA::is_nil(poa_object.in()))
+ orb->resolve_initial_references ("RootPOA");
+ if (CORBA::is_nil (poa_object.in ()))
ACE_ERROR_RETURN ((LM_ERROR,
" (%P|%t) Unable to initialize the POA.\n"),
1);
@@ -87,7 +89,7 @@ main (int argc, char *argv[])
// We use a different POA, otherwise the user would have to
// change the object key each time it invokes the server.
- PortableServer::POA_var good_poa =
+ PortableServer::POA_var poa =
root_poa->create_POA ("RootPOA_is_BAD",
poa_manager.in (),
policies,
@@ -102,13 +104,14 @@ main (int argc, char *argv[])
PortableServer::ObjectId_var id =
PortableServer::string_to_ObjectId ("factory");
- good_poa->activate_object_with_id (id.in (),
+ poa->activate_object_with_id (id.in (),
&factory_impl,
TAO_TRY_ENV);
TAO_CHECK_ENV;
CORBA::Object_var obj =
- good_poa->id_to_reference (id.in (), TAO_TRY_ENV);
+ poa->id_to_reference (id.in (),
+ TAO_TRY_ENV);
TAO_CHECK_ENV;
CORBA::String_var str =
@@ -125,8 +128,10 @@ main (int argc, char *argv[])
// Handle requests for this object until we're killed, or one of
// the methods asks us to exit.
if (orb->run () == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "run"), -1);
-
+ ACE_ERROR_RETURN ((LM_ERROR,
+ "%p\n",
+ "run"),
+ -1);
root_poa->destroy (CORBA::B_TRUE,
CORBA::B_TRUE,
TAO_TRY_ENV);