summaryrefslogtreecommitdiff
path: root/ASNMP/asnmp/vb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ASNMP/asnmp/vb.cpp')
-rw-r--r--ASNMP/asnmp/vb.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ASNMP/asnmp/vb.cpp b/ASNMP/asnmp/vb.cpp
index ff9c22bb773..cbd6ba5290b 100644
--- a/ASNMP/asnmp/vb.cpp
+++ b/ASNMP/asnmp/vb.cpp
@@ -387,8 +387,8 @@ int operator==( const Vb &lhs, const Vb &rhs)
return 0;
if (lhs.iv_vb_value_ != 0 && rhs.iv_vb_value_ != 0) {
- int val = strcmp(lhs.iv_vb_value_->to_string(),
- rhs.iv_vb_value_->to_string());
+ int val = ACE_OS_String::strcmp(lhs.iv_vb_value_->to_string(),
+ rhs.iv_vb_value_->to_string());
return !val;
}
else