summaryrefslogtreecommitdiff
path: root/testsuite/smbd
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-06-23 07:02:59 +0000
committerTim Potter <tpot@samba.org>2000-06-23 07:02:59 +0000
commit8a62ee49746a32d1c0b8c3f3261b3a38c667d00b (patch)
tree7ecca2677a3efa7c9d95ee35b5c73aef2aa93b66 /testsuite/smbd
parenta90b7ab61b1e1e93d515f74723f00382ced7ddf0 (diff)
downloadsamba-8a62ee49746a32d1c0b8c3f3261b3a38c667d00b.tar.gz
samba-8a62ee49746a32d1c0b8c3f3261b3a38c667d00b.tar.bz2
samba-8a62ee49746a32d1c0b8c3f3261b3a38c667d00b.zip
Don't return a value for a void function.
(This used to be commit 66fd7da08ffbb3673925e8816f06f8983363036b)
Diffstat (limited to 'testsuite/smbd')
-rw-r--r--testsuite/smbd/sec_ctx_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/testsuite/smbd/sec_ctx_utils.c b/testsuite/smbd/sec_ctx_utils.c
index 4d0588196d..fbda6352c4 100644
--- a/testsuite/smbd/sec_ctx_utils.c
+++ b/testsuite/smbd/sec_ctx_utils.c
@@ -36,7 +36,7 @@ void get_random_grouplist(int *ngroups, gid_t **groups)
if (!groups) {
printf("FAIL: malloc random grouplist\n");
- return 1;
+ return;
}
for (i = 0; i < *ngroups; i++) {