summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp')
-rw-r--r--TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp
index a341abf2667..f18deef164e 100644
--- a/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp
+++ b/TAO/orbsvcs/tests/AVStreams/mpeg/source/mpeg_mib/mibRadioBox.cpp
@@ -183,7 +183,7 @@ int mib_load_RadioBox(mib_Widget *thisw, mib_Buffer *fin)
{
if (!mib_read_line(fin, res, val))
return 0;
- vallen =ACE_OS::strlen (val);
+ vallen = strlen(val);
if (vallen < 2)
return 0;
val[vallen-1] = '\0';
@@ -203,7 +203,7 @@ int mib_load_RadioBox(mib_Widget *thisw, mib_Buffer *fin)
if (!mib_read_line(fin, res, val))
return 0;
- if (ACE_OS::strcmp (res,"EndWidget"))
+ if (strcmp(res,"EndWidget"))
return 0;
return 1;