summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/LoadBalancing
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-29 19:58:15 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-08-29 19:58:15 +0000
commitee35b2fa63eb26eb820b5cfd5a26b2fb5bd3a924 (patch)
treea012e6ae299caf1d006119445a81517243f68083 /TAO/orbsvcs/tests/LoadBalancing
parent19518ec01a1cfdba649dcfe5e9c87a9d9919b000 (diff)
downloadATCD-ee35b2fa63eb26eb820b5cfd5a26b2fb5bd3a924.tar.gz
ChangeLogTag:Fri Aug 29 15:18:36 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'TAO/orbsvcs/tests/LoadBalancing')
-rw-r--r--TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp6
-rw-r--r--TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp
index a34a7760299..4b81a558c68 100644
--- a/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp
+++ b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.cpp
@@ -148,7 +148,7 @@ LB_server::start_orb_and_poa (void)
}
int
-LB_server::create_object_group (const char *loc1, const char *loc2)
+LB_server::create_object_group (const char *loc_1, const char *loc_2)
{
ACE_TRY_NEW_ENV
{
@@ -204,8 +204,8 @@ LB_server::create_object_group (const char *loc1, const char *loc2)
PortableGroup::Location & location2 = factory_infos[1].the_location;
location2.length (1);
- location1[0].id = CORBA::string_dup (loc1);
- location2[0].id = CORBA::string_dup (loc2);
+ location1[0].id = CORBA::string_dup (loc_1);
+ location2[0].id = CORBA::string_dup (loc_2);
property_two.nam[0].id =
CORBA::string_dup ("org.omg.PortableGroup.Factories");
diff --git a/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h
index 184afcacfb4..eec9e8e1133 100644
--- a/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h
+++ b/TAO/orbsvcs/tests/LoadBalancing/GenericFactory/Infrastructure_Controlled/LB_server.h
@@ -41,7 +41,7 @@ public:
int start_orb_and_poa (void);
/// Create the Object Group using the Load Manager Reference.
- int create_object_group (const char *loc1, const char *loc2);
+ int create_object_group (const char *loc_1, const char *loc_2);
/// Run the ORB.
int run (void);