summaryrefslogtreecommitdiff
path: root/TAO/tao/Acceptor_Registry.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Acceptor_Registry.cpp')
-rw-r--r--TAO/tao/Acceptor_Registry.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/Acceptor_Registry.cpp b/TAO/tao/Acceptor_Registry.cpp
index 5c592a0ce40..08ec327b1f1 100644
--- a/TAO/tao/Acceptor_Registry.cpp
+++ b/TAO/tao/Acceptor_Registry.cpp
@@ -424,16 +424,16 @@ TAO_Acceptor_Registry::open_i (TAO_ORB_Core *orb_core,
char *last_addr = 0;
ACE_Auto_Basic_Array_Ptr <char> addr_str (addrs.rep ());
- char *astr = ACE_OS::strtok_r (addr_str.get (),
- ",",
- &last_addr);
+ const char *astr = ACE_OS::strtok_r (addr_str.get (),
+ ",",
+ &last_addr);
if (astr == 0)
astr = "";
// Iterate over the addrs specified in the endpoint.
for ( ;
- astr != 0 ;
+ astr != 0;
astr = ACE_OS::strtok_r (0,
",",
&last_addr))