From 150cfb4b97e2ee67ec1fa8fc379ac03d42002da9 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Thu, 22 Nov 2012 16:21:53 +0100 Subject: [PATCH] s3:winbindd: rename idmap_init_passdb_domain() -> idmap_passdb_domain() Signed-off-by: Michael Adam Reviewed-by: Stefan Metzmacher --- source3/winbindd/idmap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source3/winbindd/idmap.c b/source3/winbindd/idmap.c index f6e48d3e044..07295e757a6 100644 --- a/source3/winbindd/idmap.c +++ b/source3/winbindd/idmap.c @@ -325,7 +325,7 @@ static struct idmap_domain *idmap_init_default_domain(TALLOC_CTX *mem_ctx) * No config, passdb has its own configuration. */ -static struct idmap_domain *idmap_init_passdb_domain(TALLOC_CTX *mem_ctx) +static struct idmap_domain *idmap_passdb_domain(TALLOC_CTX *mem_ctx) { idmap_init(); @@ -483,7 +483,7 @@ NTSTATUS idmap_backends_unixid_to_sid(const char *domname, struct id_map *id) * Always give passdb a chance first */ - dom = idmap_init_passdb_domain(NULL); + dom = idmap_passdb_domain(NULL); if ((dom != NULL) && NT_STATUS_IS_OK(dom->methods->unixids_to_sids(dom, maps)) && id->status == ID_MAPPED) { @@ -516,7 +516,7 @@ NTSTATUS idmap_backends_sid_to_unixid(const char *domain, struct id_map *id) DEBUG(10, ("asking passdb...\n")); - dom = idmap_init_passdb_domain(NULL); + dom = idmap_passdb_domain(NULL); if (dom == NULL) { return NT_STATUS_NONE_MAPPED; } -- 2.11.4.GIT