diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-02-12 05:52:53 +0000 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2004-02-12 05:52:53 +0000 |
commit | 88383441080e3b1012c9e7a5fbe4ab62b04da4fa (patch) | |
tree | e0da304e2c39729afc410eadd0e67510e1fd0eed /source4/librpc/rpc | |
parent | 9b662ae037f90fcee715d372d81652e27949d0cd (diff) | |
download | samba-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)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_ntlm.c | 2 |
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); } |