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/Acceptor_Registry.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/Acceptor_Registry.cpp')
-rw-r--r-- | TAO/tao/Acceptor_Registry.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/TAO/tao/Acceptor_Registry.cpp b/TAO/tao/Acceptor_Registry.cpp index af47b871385..f8a35ff990f 100644 --- a/TAO/tao/Acceptor_Registry.cpp +++ b/TAO/tao/Acceptor_Registry.cpp @@ -180,11 +180,11 @@ TAO_Acceptor_Registry::open (TAO_ORB_Core *orb_core, // remaining number of endpoints in the current endpoint // specification. const char *ep_end = - ep->c_str () + ACE_OS_String::strlen (ep->c_str ()); + ep->c_str () + ACE_OS::strlen (ep->c_str ()); - for (const char *e = ACE_OS_String::strchr (ep->c_str (), ','); + for (const char *e = ACE_OS::strchr (ep->c_str (), ','); e != 0 && e != ep_end; - e = ACE_OS_String::strchr (e, ',')) + e = ACE_OS::strchr (e, ',')) { ++acceptor_count; ++e; |