summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Multiple
diff options
context:
space:
mode:
authorvzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-10-22 12:52:42 +0000
committervzykov <vzykov@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2008-10-22 12:52:42 +0000
commite584a3d87386b090e24380f2d0dbd097b9de0130 (patch)
tree9b140aa6f7a000fdb9a7f109d2409c28aeb363fd /TAO/orbsvcs/tests/EC_Multiple
parent80701b60bdd00fa77c2cddbaebd7d434cc1b2976 (diff)
downloadATCD-e584a3d87386b090e24380f2d0dbd097b9de0130.tar.gz
ChangeLogTag: Wed Oct 22 12:49:03 UTC 2008 Vladimir Zykov <vzykov@prismtech.com>
Diffstat (limited to 'TAO/orbsvcs/tests/EC_Multiple')
-rw-r--r--TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
index f4088fc5bde..ce33914cfba 100644
--- a/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
+++ b/TAO/orbsvcs/tests/EC_Multiple/EC_Multiple.cpp
@@ -625,7 +625,7 @@ Test_ECG::connect_suppliers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
mc = 1;
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "hp_supplier_%02d@%C", i, this->lcl_name_.c_str ());
+ ACE_OS::sprintf (buf, "hp_supplier_%02d@%s", i, this->lcl_name_.c_str ());
ACE_NEW (this->suppliers_[i],
Test_Supplier (this, this->suppliers_ + i));
@@ -646,7 +646,7 @@ Test_ECG::connect_suppliers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
mc = 1;
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "lp_supplier_%02d@%C",
+ ACE_OS::sprintf (buf, "lp_supplier_%02d@%s",
i - this->hp_suppliers_, this->lcl_name_.c_str ());
ACE_NEW (this->suppliers_[i],
@@ -684,7 +684,7 @@ Test_ECG::activate_suppliers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
mc = 1;
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "hp_supplier_%02d@%C", i, this->lcl_name_.c_str ());
+ ACE_OS::sprintf (buf, "hp_supplier_%02d@%s", i, this->lcl_name_.c_str ());
this->suppliers_[i]->activate (buf,
this->hp_interval_ * 10,
@@ -699,7 +699,7 @@ Test_ECG::activate_suppliers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
mc = 1;
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "lp_supplier_%02d@%C",
+ ACE_OS::sprintf (buf, "lp_supplier_%02d@%s",
i - this->hp_suppliers_, this->lcl_name_.c_str ());
this->suppliers_[i]->activate (buf,
@@ -720,7 +720,7 @@ Test_ECG::connect_consumers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
for (i = 0; i < this->hp_consumers_; ++i)
{
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "hp_consumer_%02d@%C", i, this->lcl_name_.c_str ());
+ ACE_OS::sprintf (buf, "hp_consumer_%02d@%s", i, this->lcl_name_.c_str ());
ACE_NEW (this->consumers_[i],
Test_Consumer (this, this->consumers_ + i));
@@ -737,7 +737,7 @@ Test_ECG::connect_consumers (RtecEventChannelAdmin::EventChannel_ptr local_ec)
for (; i < this->hp_consumers_ + this->lp_consumers_; ++i)
{
char buf[BUFSIZ];
- ACE_OS::sprintf (buf, "lp_consumer_%02d@%C",
+ ACE_OS::sprintf (buf, "lp_consumer_%02d@%s",
i - this->hp_consumers_, this->lcl_name_.c_str ());
ACE_NEW (this->consumers_[i],