summaryrefslogtreecommitdiff
path: root/orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp')
-rw-r--r--orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp b/orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp
index b5e36458b92..6e8c488cbc9 100644
--- a/orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp
+++ b/orbsvcs/tests/Security/ssliop_CSD/MessengerServer.cpp
@@ -29,7 +29,7 @@ parse_args (int argc, ACE_TCHAR *argv[])
argv [0]),
-1);
}
- // Indicates sucessful parsing of the command line
+ // Indicates successful parsing of the command line
return 0;
}
@@ -56,14 +56,14 @@ ACE_TMAIN (int argc, ACE_TCHAR *argv[])
// Register the servant with the RootPOA, obtain its object
// reference, stringify it, and write it to a file.
- PortableServer::ObjectId_var oid =
+ PortableServer::ObjectId_var oid =
poa->activate_object( &messenger_servant );
CORBA::Object_var messenger_obj = poa->id_to_reference( oid.in() );
CORBA::String_var str = orb->object_to_string( messenger_obj.in() );
std::ofstream iorFile( ACE_TEXT_ALWAYS_CHAR(ior_output_file) );
iorFile << str.in() << std::endl;
iorFile.close();
- std::cout << "IOR written to file " << ACE_TEXT_ALWAYS_CHAR(ior_output_file) << std::endl;
+ std::cout << "IOR written to file " << ACE_TEXT_ALWAYS_CHAR(ior_output_file) << std::endl;
// Accept requests
orb->run();