summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_schannel.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2004-02-11 13:18:05 +0000
committerAndrew Tridgell <tridge@samba.org>2004-02-11 13:18:05 +0000
commit9b662ae037f90fcee715d372d81652e27949d0cd (patch)
tree1969a4f2b67515fa284a64ca02edbc72f391c511 /source4/librpc/rpc/dcerpc_schannel.c
parentcc977af616d3c98af646e29b72c71303df9fa229 (diff)
downloadsamba-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/rpc/dcerpc_schannel.c')
-rw-r--r--source4/librpc/rpc/dcerpc_schannel.c2
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);
}