summaryrefslogtreecommitdiff
path: root/ASNMP/asnmp/vb.cpp
diff options
context:
space:
mode:
authordhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-10 14:02:41 +0000
committerdhinton <dhinton@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2002-05-10 14:02:41 +0000
commitbb7da47f3bcd674074a9d59279b96b20df187c58 (patch)
tree718a5fb983e5786a9d82058aa48c3aa69c316dbf /ASNMP/asnmp/vb.cpp
parent49e7bfe6054325993b69c38a730efa9d56741ded (diff)
downloadATCD-OS-h_breakup.tar.gz
ChangeLogTag:Fri May 10 13:58:47 UTC 2002 Don Hinton <dhinton@ieee.org>OS-h_breakup
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