summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-08-23 12:31:36 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-08-23 12:31:36 +0000
commit548203a0c42727d7ff3fc339968fdd448180bcae (patch)
tree8fd7d3704ca489015e72ad2a3cb076f714716278 /source3/lib
parentf4806920562ae4db7096109754c8f9c83db52d62 (diff)
downloadsamba-548203a0c42727d7ff3fc339968fdd448180bcae.tar.gz
samba-548203a0c42727d7ff3fc339968fdd448180bcae.tar.bz2
samba-548203a0c42727d7ff3fc339968fdd448180bcae.zip
We need to return the value here...
Andrew Bartlett (This used to be commit 8fbc964f2f40de80851cf89f7bed0ddc5d01b074)
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/system_smbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/system_smbd.c b/source3/lib/system_smbd.c
index 28ceaf3939..580ef8a463 100644
--- a/source3/lib/system_smbd.c
+++ b/source3/lib/system_smbd.c
@@ -101,5 +101,6 @@ int sys_getgrouplist(const char *user, gid_t gid, gid_t *groups, int *grpcnt)
become_root();
retval = getgrouplist_internals(user, gid, groups, grpcnt);
unbecome_root();
+ return retval;
#endif
}