summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2004-02-12 05:52:53 +0000
committerStefan Metzmacher <metze@samba.org>2004-02-12 05:52:53 +0000
commit88383441080e3b1012c9e7a5fbe4ab62b04da4fa (patch)
treee0da304e2c39729afc410eadd0e67510e1fd0eed
parent9b662ae037f90fcee715d372d81652e27949d0cd (diff)
downloadsamba-88383441080e3b1012c9e7a5fbe4ab62b04da4fa.tar.gz
samba-88383441080e3b1012c9e7a5fbe4ab62b04da4fa.tar.bz2
samba-88383441080e3b1012c9e7a5fbe4ab62b04da4fa.zip
do not return a value in a void function
metze (This used to be commit 836612b841ce7f91525c333d81e31dcdb83f533c)
-rw-r--r--source4/librpc/rpc/dcerpc_ntlm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_ntlm.c b/source4/librpc/rpc/dcerpc_ntlm.c
index 8bfe0cb5ee..81f434cccf 100644
--- a/source4/librpc/rpc/dcerpc_ntlm.c
+++ b/source4/librpc/rpc/dcerpc_ntlm.c
@@ -59,7 +59,7 @@ static NTSTATUS ntlm_sign_packet(struct dcerpc_security *dcerpc_security,
static void ntlm_security_end(struct dcerpc_security *dcerpc_security)
{
struct ntlmssp_state *ntlmssp_state = dcerpc_security->private;
- return ntlmssp_end(&ntlmssp_state);
+ ntlmssp_end(&ntlmssp_state);
}