summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 16:41:25 +0000
committerparsons <parsons@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-01-28 16:41:25 +0000
commit2441308165b5795cf64d0de598b3081884d04da7 (patch)
tree388ecc126160e682cb82d27e250002771d1c8620
parenta3c40efccdd42d07c4b663a344ee44782be4ddc2 (diff)
downloadATCD-2441308165b5795cf64d0de598b3081884d04da7.tar.gz
ChangeLogTag: Mon Jan 28 10:39:26 2002 Jeff Parsons <parsons@cs.wustl.edu>
-rw-r--r--TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp
index 26672953fa8..356cc1401ce 100644
--- a/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp
+++ b/TAO/orbsvcs/tests/InterfaceRepo/Application_Test/ifr_dii_client.cpp
@@ -194,16 +194,16 @@ IFR_DII_Client::get_operation_def (TAO_ENV_SINGLE_ARG_DECL)
ACE_CHECK;
CORBA::ULong n_operations = operations->length ();
- CORBA::String_var op_name;
+ CORBA::String_var operation_name;
// The length is 1 in this case, but in general, it could
// be any length.
for (CORBA::ULong i = 0; i < n_operations; ++i)
{
- op_name = operations[i]->name (TAO_ENV_SINGLE_ARG_PARAMETER);
+ operation_name = operations[i]->name (TAO_ENV_SINGLE_ARG_PARAMETER);
ACE_CHECK;
- if (!ACE_OS::strcmp (op_name.in (), this->op_name.in ()))
+ if (!ACE_OS::strcmp (operation_name.in (), this->op_name.in ()))
{
this->op_ =
CORBA::OperationDef::_narrow (operations[i].in ()