summaryrefslogtreecommitdiffstats
path: root/source/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
commit8fbc964f2f40de80851cf89f7bed0ddc5d01b074 (patch)
tree1eab9384f47892e2ea1ae75f7a1a3f0f36eefac8 /source/lib
parent52924c064dc649032619c52e5cc915ca74e3aa10 (diff)
downloadsamba-8fbc964f2f40de80851cf89f7bed0ddc5d01b074.tar.gz
samba-8fbc964f2f40de80851cf89f7bed0ddc5d01b074.tar.xz
samba-8fbc964f2f40de80851cf89f7bed0ddc5d01b074.zip
We need to return the value here...
Andrew Bartlett
Diffstat (limited to 'source/lib')
-rw-r--r--source/lib/system_smbd.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/lib/system_smbd.c b/source/lib/system_smbd.c
index 28ceaf39390..580ef8a4634 100644
--- a/source/lib/system_smbd.c
+++ b/source/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
}