From: Ralf Haferkamp Date: Wed, 24 Jan 2007 14:27:29 +0000 (+0000) Subject: Fixed initialization of "usage" and "single" attributes X-Git-Tag: OPENLDAP_REL_ENG_2_4_4ALPHA~8^2~152 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=5856d39289fc136243caf05446c980ce37297ccd;p=openldap Fixed initialization of "usage" and "single" attributes --- diff --git a/contrib/ldapc++/src/LDAPAttrType.cpp b/contrib/ldapc++/src/LDAPAttrType.cpp index d43cf13435..d59c160daf 100644 --- a/contrib/ldapc++/src/LDAPAttrType.cpp +++ b/contrib/ldapc++/src/LDAPAttrType.cpp @@ -44,7 +44,7 @@ LDAPAttrType::LDAPAttrType (string at_item) { this->setDesc( a->at_desc ); this->setOid( a->at_oid ); this->setSingle( a->at_single_value ); - this->setSingle( a->at_usage ); + this->setUsage( a->at_usage ); } // else? -> error }