]> git.sur5r.net Git - openldap/blobdiff - contrib/ldapc++/src/LDAPAttributeList.cpp
ITS#8605 - spelling fixes
[openldap] / contrib / ldapc++ / src / LDAPAttributeList.cpp
index f5f74c81f00878a4a518be2fb925fbe4ed3116e3..7f51d73b190572071ed27758b36a2219d3b24807 100644 (file)
 
 using namespace std;
 
-// little helper function for doing case insensitve string comparison
+// little helper function for doing case insensitive string comparison
 bool nocase_compare(char c1, char c2);
 
 LDAPAttributeList::LDAPAttributeList(){
     DEBUG(LDAP_DEBUG_CONSTRUCT,
-            "LDAPAttributeList::LDAPAttributList( )" << endl);
+            "LDAPAttributeList::LDAPAttributeList( )" << endl);
 }
 
 LDAPAttributeList::LDAPAttributeList(const LDAPAttributeList& al){
     DEBUG(LDAP_DEBUG_CONSTRUCT,
-            "LDAPAttributeList::LDAPAttributList(&)" << endl);
+            "LDAPAttributeList::LDAPAttributeList(&)" << endl);
     m_attrs=al.m_attrs;
 }
 
 LDAPAttributeList::LDAPAttributeList(const LDAPAsynConnection *ld, 
         LDAPMessage *msg){
     DEBUG(LDAP_DEBUG_CONSTRUCT,
-            "LDAPAttributeList::LDAPAttributList()" << endl);
+            "LDAPAttributeList::LDAPAttributeList()" << endl);
     BerElement *ptr=0;
     char *name=ldap_first_attribute(ld->getSessionHandle(), msg, &ptr);
 /*
@@ -65,7 +65,7 @@ LDAPAttributeList::LDAPAttributeList(const LDAPAsynConnection *ld,
 }
 
 LDAPAttributeList::~LDAPAttributeList(){
-    DEBUG(LDAP_DEBUG_DESTROY,"LDAPAttributeList::~LDAPAttributList()" << endl);
+    DEBUG(LDAP_DEBUG_DESTROY,"LDAPAttributeList::~LDAPAttributeList()" << endl);
 }
 
 size_t LDAPAttributeList::size() const{