diff options
author | Alexander Bokovoy <ab@samba.org> | 2012-09-06 18:52:03 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-09-07 12:31:42 +0200 |
commit | edfe0c0d139a69f3463ad0c59b7c1c6df907079a (patch) | |
tree | 6d0073853d5ff492e94e874b6202fea1201aadb9 /source3/include | |
parent | a43774a2577cd852222f4df16eb5a95aa4f11f5e (diff) | |
download | samba-edfe0c0d139a69f3463ad0c59b7c1c6df907079a.tar.gz samba-edfe0c0d139a69f3463ad0c59b7c1c6df907079a.tar.bz2 samba-edfe0c0d139a69f3463ad0c59b7c1c6df907079a.zip |
s3-smbldap: use smbldap_ prefix for all functions
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/smbldap.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/include/smbldap.h b/source3/include/smbldap.h index 5051fcf333..ea944cf78f 100644 --- a/source3/include/smbldap.h +++ b/source3/include/smbldap.h @@ -118,8 +118,8 @@ bool smbldap_get_single_attribute (LDAP * ldap_struct, LDAPMessage * entry, int smbldap_modify(struct smbldap_state *ldap_state, const char *dn, LDAPMod *attrs[]); -int smb_ldap_start_tls(LDAP *ldap_struct, int version); -int smb_ldap_setup_full_conn(LDAP **ldap_struct, const char *uri); +int smbldap_start_tls(LDAP *ldap_struct, int version); +int smbldap_setup_full_conn(LDAP **ldap_struct, const char *uri); int smbldap_search(struct smbldap_state *ldap_state, const char *base, int scope, const char *filter, const char *attrs[], int attrsonly, @@ -157,8 +157,8 @@ bool smbldap_talloc_single_blob(TALLOC_CTX *mem_ctx, LDAP *ld, DATA_BLOB *blob); bool smbldap_pull_sid(LDAP *ld, LDAPMessage *msg, const char *attrib, struct dom_sid *sid); -void talloc_autofree_ldapmsg(TALLOC_CTX *mem_ctx, LDAPMessage *result); -void talloc_autofree_ldapmod(TALLOC_CTX *mem_ctx, LDAPMod **mod); +void smbldap_talloc_autofree_ldapmsg(TALLOC_CTX *mem_ctx, LDAPMessage *result); +void smbldap_talloc_autofree_ldapmod(TALLOC_CTX *mem_ctx, LDAPMod **mod); char *smbldap_talloc_dn(TALLOC_CTX *mem_ctx, LDAP *ld, LDAPMessage *entry); |