diff options
author | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-11-04 05:21:39 +0000 |
---|---|---|
committer | dhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2003-11-04 05:21:39 +0000 |
commit | 04f13977330f4b8f3420a6c3e80d8a0b75e50c58 (patch) | |
tree | b9ad21287a6b112d22cd757718af5c60419de77b /TAO/tao/ORBInitInfo.cpp | |
parent | 48fea8412a22e7a3ce12afeea8d9363027a7428d (diff) | |
download | ATCD-04f13977330f4b8f3420a6c3e80d8a0b75e50c58.tar.gz |
ChangeLogTag:Tue Nov 4 04:55:40 UTC 2003 Don Hinton <dhinton@dresystems.com>
Diffstat (limited to 'TAO/tao/ORBInitInfo.cpp')
-rw-r--r-- | TAO/tao/ORBInitInfo.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/TAO/tao/ORBInitInfo.cpp b/TAO/tao/ORBInitInfo.cpp index e424388a38d..a6fd03a656b 100644 --- a/TAO/tao/ORBInitInfo.cpp +++ b/TAO/tao/ORBInitInfo.cpp @@ -147,7 +147,7 @@ TAO_ORBInitInfo::register_initial_reference ( if (id == 0) ACE_THROW (PortableInterceptor::ORBInitInfo::InvalidName ()); - else if (ACE_OS_String::strlen (id) == 0) + else if (ACE_OS::strlen (id) == 0) ACE_THROW (PortableInterceptor::ORBInitInfo::InvalidName ()); @@ -170,7 +170,7 @@ TAO_ORBInitInfo::resolve_initial_references ( if (id == 0) ACE_THROW_RETURN (PortableInterceptor::ORBInitInfo::InvalidName (), CORBA::Object::_nil ()); - else if (ACE_OS_String::strlen (id) == 0) + else if (ACE_OS::strlen (id) == 0) ACE_THROW_RETURN (PortableInterceptor::ORBInitInfo::InvalidName (), CORBA::Object::_nil ()); |