1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

winbind: Make "idmap_find_domain" public

Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Uri Simchoni <uri@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
This commit is contained in:
Volker Lendecke 2016-12-29 09:54:56 +00:00
parent 2702114a94
commit c98ad0acca
2 changed files with 2 additions and 1 deletions

View File

@ -500,7 +500,7 @@ fail:
* add_trusted_domain.
*/
static struct idmap_domain *idmap_find_domain(const char *domname)
struct idmap_domain *idmap_find_domain(const char *domname)
{
bool ok;
int i;

View File

@ -36,6 +36,7 @@ NTSTATUS idmap_allocate_uid(struct unixid *id);
NTSTATUS idmap_allocate_gid(struct unixid *id);
NTSTATUS idmap_backend_unixids_to_sids(struct id_map **maps,
const char *domain_name);
struct idmap_domain *idmap_find_domain(const char *domname);
/* The following definitions come from winbindd/idmap_nss.c */