diff options
author | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-30 01:44:31 +0000 |
---|---|---|
committer | schmidt <douglascraigschmidt@users.noreply.github.com> | 1997-10-30 01:44:31 +0000 |
commit | 46c96ac388a2db4a6f6ca548d2aeaa2ffb3804da (patch) | |
tree | 04811bad80ff8b7fc7d7a2f6ed3f972bc6ba3ea4 /ace/Remote_Name_Space.cpp | |
parent | 35bf20333d940d6d6a6ef0c23ca4ed88a6a89af8 (diff) | |
download | ATCD-46c96ac388a2db4a6f6ca548d2aeaa2ffb3804da.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace/Remote_Name_Space.cpp')
-rw-r--r-- | ace/Remote_Name_Space.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/ace/Remote_Name_Space.cpp b/ace/Remote_Name_Space.cpp index 4509ffcf7a0..5c5682e6b2e 100644 --- a/ace/Remote_Name_Space.cpp +++ b/ace/Remote_Name_Space.cpp @@ -44,7 +44,8 @@ ACE_Remote_Name_Space::bind (const ACE_WString &name, name.length () * sizeof (ACE_USHORT16), value.rep (), value.length () * sizeof (ACE_USHORT16), - type, strlen (type)); + type, + ACE_OS::strlen (type)); int result = this->ns_proxy_.request_reply (request); return result == ACE_Name_Reply::SUCCESS ? 0 : result; } @@ -59,7 +60,8 @@ ACE_Remote_Name_Space::rebind (const ACE_WString &name, name.length () * sizeof (ACE_USHORT16), value.rep (), value.length () * sizeof (ACE_USHORT16), - type, strlen (type)); + type, + ACE_OS::strlen (type)); int result = this->ns_proxy_.request_reply (request); return result == ACE_Name_Reply::SUCCESS ? 0 : result; } |