1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-09 08:58:35 +03:00

s3-passdb: make priv2ld() public

Signed-off-by: Günther Deschner <gd@samba.org>
This commit is contained in:
Sumit Bose 2010-07-15 16:52:32 +02:00 committed by Günther Deschner
parent b4dd65d3f9
commit c96fd895b9
2 changed files with 2 additions and 1 deletions

View File

@ -3886,6 +3886,7 @@ NTSTATUS make_pdb_method( struct pdb_methods **methods ) ;
struct ldapsam_privates;
LDAP *priv2ld(struct ldapsam_privates *priv);
const char** get_userattr_list( TALLOC_CTX *mem_ctx, int schema_ver );
NTSTATUS pdb_init_ldapsam_compat(struct pdb_methods **pdb_method, const char *location);
NTSTATUS pdb_init_ldapsam(struct pdb_methods **pdb_method, const char *location);

View File

@ -87,7 +87,7 @@
Simple helper function to make stuff better readable
**********************************************************************/
static LDAP *priv2ld(struct ldapsam_privates *priv)
LDAP *priv2ld(struct ldapsam_privates *priv)
{
return priv->smbldap_state->ldap_struct;
}