X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=contrib%2Fldapc%2B%2B%2Fsrc%2FLDAPConstraints.cpp;h=a61857d17a58928e23efe1c6333c550afa8c8699;hb=10566c8be384c6435476ec54e842382841cb84b6;hp=d3070d8df3cebbe2dcb2edd56bedf9ff1f0de775;hpb=7036dce36e7f44184addbb5ec4f4794d5467ca22;p=openldap diff --git a/contrib/ldapc++/src/LDAPConstraints.cpp b/contrib/ldapc++/src/LDAPConstraints.cpp index d3070d8df3..a61857d17a 100644 --- a/contrib/ldapc++/src/LDAPConstraints.cpp +++ b/contrib/ldapc++/src/LDAPConstraints.cpp @@ -137,7 +137,7 @@ const LDAPControlSet* LDAPConstraints::getClientControls() const{ } LDAPControl** LDAPConstraints::getSrvCtrlsArray() const { - DEBUG(LDAP_DEBUG_TRACE,"LDAPContstraints::getSrvCtrlsArray()" << endl); + DEBUG(LDAP_DEBUG_TRACE,"LDAPConstraints::getSrvCtrlsArray()" << endl); if(m_serverControls){ return m_serverControls->toLDAPControlArray(); }else{ @@ -146,7 +146,7 @@ LDAPControl** LDAPConstraints::getSrvCtrlsArray() const { } LDAPControl** LDAPConstraints::getClCtrlsArray() const { - DEBUG(LDAP_DEBUG_TRACE,"LDAPContstraints::getClCtrlsArray()" << endl); + DEBUG(LDAP_DEBUG_TRACE,"LDAPConstraints::getClCtrlsArray()" << endl); if(m_clientControls){ return m_clientControls->toLDAPControlArray(); }else{ @@ -155,7 +155,7 @@ LDAPControl** LDAPConstraints::getClCtrlsArray() const { } timeval* LDAPConstraints::getTimeoutStruct() const { - DEBUG(LDAP_DEBUG_TRACE,"LDAPContstraints::getTimeoutStruct()" << endl); + DEBUG(LDAP_DEBUG_TRACE,"LDAPConstraints::getTimeoutStruct()" << endl); if(m_maxTime == LDAP_NO_LIMIT){ return 0; }else{ @@ -167,12 +167,12 @@ timeval* LDAPConstraints::getTimeoutStruct() const { } bool LDAPConstraints::getReferralChase() const { - DEBUG(LDAP_DEBUG_TRACE,"LDAPContstraints::getReferralChase()" << endl); + DEBUG(LDAP_DEBUG_TRACE,"LDAPConstraints::getReferralChase()" << endl); return m_referralChase; } int LDAPConstraints::getHopLimit() const{ - DEBUG(LDAP_DEBUG_TRACE,"LDAPContstraints::getHopLimit()" << endl); + DEBUG(LDAP_DEBUG_TRACE,"LDAPConstraints::getHopLimit()" << endl); return m_HopLimit; }