mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 05:30:07 -05:00
removed default arguments from cpp-Files (to build on newer gcc)
This commit is contained in:
parent
4ca97f4118
commit
d01bd44f96
2 changed files with 4 additions and 4 deletions
|
|
@ -22,7 +22,7 @@ LDAPBindRequest::LDAPBindRequest(const LDAPBindRequest& req) :
|
|||
|
||||
LDAPBindRequest::LDAPBindRequest(const string& dn,const string& passwd,
|
||||
LDAPAsynConnection *connect, const LDAPConstraints *cons,
|
||||
bool isReferral=false) : LDAPRequest(connect, cons, isReferral){
|
||||
bool isReferral) : LDAPRequest(connect, cons, isReferral){
|
||||
DEBUG(LDAP_DEBUG_CONSTRUCT,"LDAPBindRequest::LDAPBindRequest()" << endl);
|
||||
DEBUG(LDAP_DEBUG_CONSTRUCT | LDAP_DEBUG_PARAMETER, " dn:" << dn << endl
|
||||
<< " passwd:" << passwd << endl);
|
||||
|
|
|
|||
|
|
@ -137,7 +137,7 @@ void LDAPConnection::del(const string& dn, const LDAPConstraints* cons){
|
|||
|
||||
}
|
||||
|
||||
void LDAPConnection::add(const LDAPEntry* le, const LDAPConstraints* cons=0){
|
||||
void LDAPConnection::add(const LDAPEntry* le, const LDAPConstraints* cons){
|
||||
DEBUG(LDAP_DEBUG_TRACE,"LDAPConnection::add" << endl);
|
||||
LDAPMessageQueue* msg=0;
|
||||
LDAPResult* res=0;
|
||||
|
|
@ -207,7 +207,7 @@ void LDAPConnection::modify(const string& dn, const LDAPModList* mods,
|
|||
|
||||
void LDAPConnection::rename(const string& dn, const string& newRDN,
|
||||
bool delOldRDN, const string& newParentDN,
|
||||
const LDAPConstraints* cons=0){
|
||||
const LDAPConstraints* cons){
|
||||
DEBUG(LDAP_DEBUG_TRACE,"LDAPConnection::rename" << endl);
|
||||
LDAPMessageQueue* msg=0;
|
||||
LDAPResult* res=0;
|
||||
|
|
@ -287,7 +287,7 @@ LDAPSearchResults* LDAPConnection::search(const string& base, int scope,
|
|||
}
|
||||
|
||||
LDAPExtResult* LDAPConnection::extOperation(const string& oid,
|
||||
const string& value, const LDAPConstraints *cons = 0){
|
||||
const string& value, const LDAPConstraints *cons){
|
||||
DEBUG(LDAP_DEBUG_TRACE,"LDAPConnection::extOperation" << endl);
|
||||
LDAPMessageQueue* msg=0;
|
||||
LDAPExtResult* res=0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue