summaryrefslogtreecommitdiff
path: root/ace/Remote_Name_Space.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-30 01:44:31 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1997-10-30 01:44:31 +0000
commit90f562d6145dc77682303ac20639de3710929f75 (patch)
tree04811bad80ff8b7fc7d7a2f6ed3f972bc6ba3ea4 /ace/Remote_Name_Space.cpp
parentae2e4e9cca95037a40a0dec43d7585605d88384e (diff)
downloadATCD-90f562d6145dc77682303ac20639de3710929f75.tar.gz
*** empty log message ***
Diffstat (limited to 'ace/Remote_Name_Space.cpp')
-rw-r--r--ace/Remote_Name_Space.cpp6
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;
}