summaryrefslogtreecommitdiff
path: root/TAO/tests/Multiple_Inheritance/server.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Multiple_Inheritance/server.cpp')
-rw-r--r--TAO/tests/Multiple_Inheritance/server.cpp22
1 files changed, 11 insertions, 11 deletions
diff --git a/TAO/tests/Multiple_Inheritance/server.cpp b/TAO/tests/Multiple_Inheritance/server.cpp
index 05135156b37..be8bd73c210 100644
--- a/TAO/tests/Multiple_Inheritance/server.cpp
+++ b/TAO/tests/Multiple_Inheritance/server.cpp
@@ -43,37 +43,37 @@ main (int argc, char **argv)
ACE_DEBUG ((LM_DEBUG, "\n\tMultiple Inheritance Server\n\n"));
TAO_TRY
{
- orb_manager.init_child_poa (argc,
- argv,
- "child_poa",
+ orb_manager.init_child_poa (argc,
+ argv,
+ "child_poa",
TAO_TRY_ENV);
TAO_CHECK_ENV;
if (parse_args (argc, argv) != 0)
return -1;
-
+
CORBA::String_var ior =
- orb_manager.activate_under_child_poa ("my_object",
- &servant,
+ orb_manager.activate_under_child_poa ("my_object",
+ &servant,
TAO_TRY_ENV);
TAO_CHECK_ENV;
ACE_DEBUG ((LM_DEBUG, "%s\n",
ior.in ()));
-
+
// If the ior_output_file exists, output the ior to it
if (ior_output_file != 0)
{
FILE *output_file= ACE_OS::fopen (ior_output_file, "w");
if (output_file == 0)
- ACE_ERROR_RETURN ((LM_ERROR,
- "Cannot open output file for writing IOR: %s",
+ ACE_ERROR_RETURN ((LM_DEBUG,
+ "Cannot open output file for writing IOR: %s",
ior_output_file),
- -1);
+ -1);
ACE_OS::fprintf (output_file, "%s", ior.in ());
ACE_OS::fclose (output_file);
}
-
+
orb_manager.run (TAO_TRY_ENV);
TAO_CHECK_ENV;
}