summaryrefslogtreecommitdiff
path: root/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp')
-rw-r--r--TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
index ae5c11499fe..f2d6018e04e 100644
--- a/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
+++ b/TAO/performance-tests/Sequence_Latency/Thread_Per_Connection/Client_Task.cpp
@@ -25,32 +25,32 @@ Client_Task::svc (void)
this->validate_connection (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
- if (ACE_OS::strcmp (this->data_type_, "octet") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "octet") == 0 )
{
this->test_octet_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "long") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "long") == 0 )
{
this->test_long_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "short") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "short") == 0 )
{
this->test_short_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "char") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "char") == 0 )
{
this->test_char_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "longlong") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "longlong") == 0 )
{
this->test_longlong_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;
}
- if (ACE_OS::strcmp (this->data_type_, "double") == 0 )
+ if (ACE_OS::strcmp (this->data_type_.in (), "double") == 0 )
{
this->test_double_seq (ACE_ENV_SINGLE_ARG_PARAMETER);
ACE_TRY_CHECK;