summaryrefslogtreecommitdiff
path: root/source3/winbindd/winbindd_cache.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2017-07-12 12:40:29 +0200
committerVolker Lendecke <vl@samba.org>2017-08-01 07:53:21 +0200
commitd8f85c0f330d7a78978d0e4c17f7cd0756ee1076 (patch)
tree75cd5703fd94142cae76e3334eb65e27c4227438 /source3/winbindd/winbindd_cache.c
parentbbdfb51296f7558a56ac0368d7a6e69cdb7ae2fb (diff)
downloadsamba-d8f85c0f330d7a78978d0e4c17f7cd0756ee1076.tar.gz
winbindd: Make wcache_lookup_groupmem static
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Richard Sharpe <realrichardsharpe@gmail.com>
Diffstat (limited to 'source3/winbindd/winbindd_cache.c')
-rw-r--r--source3/winbindd/winbindd_cache.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c
index 9c56938bcba..aa72b49c63a 100644
--- a/source3/winbindd/winbindd_cache.c
+++ b/source3/winbindd/winbindd_cache.c
@@ -2602,12 +2602,12 @@ NTSTATUS wb_cache_lookup_useraliases(struct winbindd_domain *domain,
return status;
}
-NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
- TALLOC_CTX *mem_ctx,
- const struct dom_sid *group_sid,
- uint32_t *num_names,
- struct dom_sid **sid_mem, char ***names,
- uint32_t **name_types)
+static NTSTATUS wcache_lookup_groupmem(struct winbindd_domain *domain,
+ TALLOC_CTX *mem_ctx,
+ const struct dom_sid *group_sid,
+ uint32_t *num_names,
+ struct dom_sid **sid_mem, char ***names,
+ uint32_t **name_types)
{
struct winbind_cache *cache = get_cache(domain);
struct cache_entry *centry = NULL;