diff options
author | Volker Lendecke <vl@samba.org> | 2017-07-12 14:56:32 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2017-08-01 07:53:22 +0200 |
commit | 9be8fc2c0ae6cb09813ff08a93e8d2c40cf6b2ef (patch) | |
tree | b9761e4e8e0401f5452de827e11d58afbd9925bf /source3/winbindd/winbindd_cache.c | |
parent | 7736e592ffd0664c75a9c9c5c476b3cc9ed1de75 (diff) | |
download | samba-9be8fc2c0ae6cb09813ff08a93e8d2c40cf6b2ef.tar.gz |
winbindd: Make wcache_lookup_usergroups 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 | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/source3/winbindd/winbindd_cache.c b/source3/winbindd/winbindd_cache.c index 7f363e953d8..adc68eb0d11 100644 --- a/source3/winbindd/winbindd_cache.c +++ b/source3/winbindd/winbindd_cache.c @@ -2321,11 +2321,11 @@ NTSTATUS wcache_query_user_fullname(struct winbindd_domain *domain, return NT_STATUS_OK; } -NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain, - TALLOC_CTX *mem_ctx, - const struct dom_sid *user_sid, - uint32_t *pnum_sids, - struct dom_sid **psids) +static NTSTATUS wcache_lookup_usergroups(struct winbindd_domain *domain, + TALLOC_CTX *mem_ctx, + const struct dom_sid *user_sid, + uint32_t *pnum_sids, + struct dom_sid **psids) { struct winbind_cache *cache = get_cache(domain); struct cache_entry *centry = NULL; |