summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-07-21 03:26:10 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-07-21 03:26:10 +0000
commitafb7d1dc48fa3eab69212c3ffbd51d636c897ec0 (patch)
tree210d0f84d2c89799b259f7ac0b250cfd6140ca66 /source3/lib
parent0cdc28ab40ed1da48133171450a7ef35afb62e15 (diff)
downloadsamba-afb7d1dc48fa3eab69212c3ffbd51d636c897ec0.tar.gz
samba-afb7d1dc48fa3eab69212c3ffbd51d636c897ec0.tar.bz2
samba-afb7d1dc48fa3eab69212c3ffbd51d636c897ec0.zip
Another smattering of static and const
(This used to be commit 897cc4a610932e596f8a9807213166e380ef0203)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c
index bcef3013f9..ae94b710b2 100644
--- a/source3/lib/util.c
+++ b/source3/lib/util.c
@@ -100,7 +100,7 @@ char *tmpdir(void)
Determine whether we are in the specified group.
****************************************************************************/
-BOOL in_group(gid_t group, gid_t current_gid, int ngroups, gid_t *groups)
+BOOL in_group(gid_t group, gid_t current_gid, int ngroups, const gid_t *groups)
{
int i;