From 140bb288be426bf57fb46a3e4b012a07b6b60fc8 Mon Sep 17 00:00:00 2001 From: Alexander Bokovoy Date: Thu, 6 Sep 2012 18:53:00 +0300 Subject: s3-smbldap: use smbldap_ prefixed functions --- source3/passdb/pdb_nds.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/passdb/pdb_nds.c') diff --git a/source3/passdb/pdb_nds.c b/source3/passdb/pdb_nds.c index 71eca831f3..3e1bdfc151 100644 --- a/source3/passdb/pdb_nds.c +++ b/source3/passdb/pdb_nds.c @@ -782,7 +782,7 @@ static NTSTATUS pdb_nds_update_login_attempts(struct pdb_methods *methods, } pdb_set_backend_private_data(sam_acct, result, NULL, methods, PDB_CHANGED); - talloc_autofree_ldapmsg(sam_acct, result); + smbldap_talloc_autofree_ldapmsg(sam_acct, result); } if (ldap_count_entries(ldap_state->smbldap_state->ldap_struct, result) == 0) { @@ -812,7 +812,7 @@ static NTSTATUS pdb_nds_update_login_attempts(struct pdb_methods *methods, if((success != True) || (got_clear_text_pw == True)) { - rc = smb_ldap_setup_full_conn(&ld, ldap_state->location); + rc = smbldap_setup_full_conn(&ld, ldap_state->location); if (rc) { TALLOC_FREE(dn); return NT_STATUS_INVALID_CONNECTION; -- cgit