summaryrefslogtreecommitdiff
path: root/source3/passdb
diff options
context:
space:
mode:
authorHerb Lewis <herb@samba.org>2002-12-03 21:49:00 +0000
committerHerb Lewis <herb@samba.org>2002-12-03 21:49:00 +0000
commit73bf5369b8b9043f0e0d215f2aca42ae0bfe43a9 (patch)
tree87e9bd74851b1a0fbf54ea73ba8fefe6c05f0151 /source3/passdb
parentdb9686ff893c5a47249610e494a6bfad1168caf2 (diff)
downloadsamba-73bf5369b8b9043f0e0d215f2aca42ae0bfe43a9.tar.gz
samba-73bf5369b8b9043f0e0d215f2aca42ae0bfe43a9.tar.bz2
samba-73bf5369b8b9043f0e0d215f2aca42ae0bfe43a9.zip
use FILE_MACRO instead of __FILE__
use FUNCTION_MACRO instead of __FUNCTION_ (This used to be commit 243763d6eb107ab2444d81025232c8fe795baaf1)
Diffstat (limited to 'source3/passdb')
-rw-r--r--source3/passdb/pdb_ldap.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c
index 2427075180..884db4c26c 100644
--- a/source3/passdb/pdb_ldap.c
+++ b/source3/passdb/pdb_ldap.c
@@ -527,7 +527,7 @@ static int ldapsam_search(struct ldapsam_privates *ldap_state,
}
if (rc == LDAP_SERVER_DOWN) {
- DEBUG(0,("%s: LDAP server is down!\n",__FUNCTION__));
+ DEBUG(0,("%s: LDAP server is down!\n",FUNCTION_MACRO));
ldapsam_close(ldap_state);
}
@@ -551,7 +551,7 @@ static int ldapsam_modify(struct ldapsam_privates *ldap_state, char *dn, LDAPMod
}
if (rc == LDAP_SERVER_DOWN) {
- DEBUG(0,("%s: LDAP server is down!\n",__FUNCTION__));
+ DEBUG(0,("%s: LDAP server is down!\n",FUNCTION_MACRO));
ldapsam_close(ldap_state);
}
@@ -575,7 +575,7 @@ static int ldapsam_add(struct ldapsam_privates *ldap_state, const char *dn, LDAP
}
if (rc == LDAP_SERVER_DOWN) {
- DEBUG(0,("%s: LDAP server is down!\n",__FUNCTION__));
+ DEBUG(0,("%s: LDAP server is down!\n",FUNCTION_MACRO));
ldapsam_close(ldap_state);
}
@@ -599,7 +599,7 @@ static int ldapsam_delete(struct ldapsam_privates *ldap_state, char *dn)
}
if (rc == LDAP_SERVER_DOWN) {
- DEBUG(0,("%s: LDAP server is down!\n",__FUNCTION__));
+ DEBUG(0,("%s: LDAP server is down!\n",FUNCTION_MACRO));
ldapsam_close(ldap_state);
}
@@ -623,7 +623,7 @@ static int ldapsam_extended_operation(struct ldapsam_privates *ldap_state, LDAP_
}
if (rc == LDAP_SERVER_DOWN) {
- DEBUG(0,("%s: LDAP server is down!\n",__FUNCTION__));
+ DEBUG(0,("%s: LDAP server is down!\n",FUNCTION_MACRO));
ldapsam_close(ldap_state);
}