diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-08-23 12:31:36 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-08-23 12:31:36 +0000 |
commit | 548203a0c42727d7ff3fc339968fdd448180bcae (patch) | |
tree | 8fd7d3704ca489015e72ad2a3cb076f714716278 /source3 | |
parent | f4806920562ae4db7096109754c8f9c83db52d62 (diff) | |
download | samba-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')
-rw-r--r-- | source3/lib/system_smbd.c | 1 |
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 } |