summaryrefslogtreecommitdiff
path: root/libcli/auth
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2019-01-24 10:38:41 +0100
committerJeremy Allison <jra@samba.org>2019-02-03 13:52:29 +0100
commit858a25abf4a71c1c1e2f15e3d61c8e378998f249 (patch)
tree2207c6710f25af407e4d7b27ba29c1981181602a /libcli/auth
parent64e05bc8c138e1155a27a992233015ebc0d91dbb (diff)
downloadsamba-858a25abf4a71c1c1e2f15e3d61c8e378998f249.tar.gz
libcli: Solaris cc can't return void values
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'libcli/auth')
-rw-r--r--libcli/auth/tests/ntlm_check.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/libcli/auth/tests/ntlm_check.c b/libcli/auth/tests/ntlm_check.c
index 65c7b086008..886a1a342f8 100644
--- a/libcli/auth/tests/ntlm_check.c
+++ b/libcli/auth/tests/ntlm_check.c
@@ -180,7 +180,7 @@ static void test_ntlm_allowed(void **state)
static void test_ntlm_allowed_lm_supplied(void **state)
{
- return test_ntlm_allowed(state);
+ test_ntlm_allowed(state);
}
static void test_ntlm_disabled(void **state)
@@ -345,7 +345,7 @@ static void test_ntlmv2_only_ntlm(void **state)
static void test_ntlmv2_only_ntlm_and_lanman(void **state)
{
- return test_ntlmv2_only_ntlm(state);
+ test_ntlmv2_only_ntlm(state);
}
static void test_ntlmv2_only_ntlm_once(void **state)