From 8ee13ab866659a734c3272f4bbbd95cb87ec26f7 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Fri, 16 Dec 2005 16:16:52 +0000 Subject: r12291: Make getgroups_user static. Jeremy, there's a #ifdef'ed 0 call to this in your usershare code. We need to talk about what exactly what you intend to do here and in what scenarios. Volker (This used to be commit 95094ef758089cfc62700509d45b53bc0980654d) --- source3/lib/system_smbd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3') diff --git a/source3/lib/system_smbd.c b/source3/lib/system_smbd.c index 1afd44b709..6c65f61ad7 100644 --- a/source3/lib/system_smbd.c +++ b/source3/lib/system_smbd.c @@ -190,8 +190,8 @@ static int sys_getgrouplist(const char *user, gid_t gid, gid_t *groups, int *grp return retval; } -BOOL getgroups_user(const char *user, gid_t primary_gid, - gid_t **ret_groups, size_t *p_ngroups) +static BOOL getgroups_user(const char *user, gid_t primary_gid, + gid_t **ret_groups, size_t *p_ngroups) { size_t ngrp; int max_grp; -- cgit