diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-02-11 13:18:05 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2004-02-11 13:18:05 +0000 |
commit | 9b662ae037f90fcee715d372d81652e27949d0cd (patch) | |
tree | 1969a4f2b67515fa284a64ca02edbc72f391c511 /source4/librpc | |
parent | cc977af616d3c98af646e29b72c71303df9fa229 (diff) | |
download | samba-9b662ae037f90fcee715d372d81652e27949d0cd.tar.gz samba-9b662ae037f90fcee715d372d81652e27949d0cd.tar.bz2 samba-9b662ae037f90fcee715d372d81652e27949d0cd.zip |
fixed a void return spotted by metze
(This used to be commit 3f1b7e51c9f18745b6c06c3934ecc4fdd743e1d0)
Diffstat (limited to 'source4/librpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_schannel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_schannel.c b/source4/librpc/rpc/dcerpc_schannel.c index 3b9f82ca60..39438f4381 100644 --- a/source4/librpc/rpc/dcerpc_schannel.c +++ b/source4/librpc/rpc/dcerpc_schannel.c @@ -59,7 +59,7 @@ static NTSTATUS schan_sign_packet(struct dcerpc_security *dcerpc_security, static void schan_security_end(struct dcerpc_security *dcerpc_security) { struct schannel_state *schannel_state = dcerpc_security->private; - return schannel_end(&schannel_state); + schannel_end(&schannel_state); } |