summaryrefslogtreecommitdiff
path: root/TAO/tests/Param_Test/ub_str_seq.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tests/Param_Test/ub_str_seq.cpp')
-rw-r--r--TAO/tests/Param_Test/ub_str_seq.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tests/Param_Test/ub_str_seq.cpp b/TAO/tests/Param_Test/ub_str_seq.cpp
index 730701506f0..a0a57c707a3 100644
--- a/TAO/tests/Param_Test/ub_str_seq.cpp
+++ b/TAO/tests/Param_Test/ub_str_seq.cpp
@@ -20,7 +20,7 @@
#include "ub_str_seq.h"
ACE_RCSID (Param_Test,
- ub_str_seq,
+ ub_str_seq,
"$Id$")
// ************************************************************************
@@ -152,9 +152,9 @@ Test_String_Sequence::check_validity (void)
// lengths are same. Now compare the contents
for (CORBA::ULong i=0; i < this->in_->length () && flag; i++)
{
- if (ACE_OS::strcmp(this->in_[i], this->inout_[i]) ||
- ACE_OS::strcmp(this->in_[i], this->out_[i]) ||
- ACE_OS::strcmp(this->in_[i], this->ret_[i]))
+ if (ACE_OS::strcmp( &*(this->in_[i]), &*(this->inout_[i])) ||
+ ACE_OS::strcmp( &*(this->in_[i]), &*(this->out_[i])) ||
+ ACE_OS::strcmp( &*(this->in_[i]), &*(this->ret_[i])))
// not equal
flag = 0;
}