diff options
author | Volker Lendecke <vl@samba.org> | 2017-07-12 12:40:29 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2017-08-01 07:53:21 +0200 |
commit | d8f85c0f330d7a78978d0e4c17f7cd0756ee1076 (patch) | |
tree | 75cd5703fd94142cae76e3334eb65e27c4227438 /source3/winbindd/winbindd_cache.c | |
parent | bbdfb51296f7558a56ac0368d7a6e69cdb7ae2fb (diff) | |
download | samba-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.c | 12 |
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; |