1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-17 02:05:21 +03:00

fixed a void return spotted by metze

(This used to be commit 3f1b7e51c9f18745b6c06c3934ecc4fdd743e1d0)
This commit is contained in:
Andrew Tridgell 2004-02-11 13:18:05 +00:00
parent cc977af616
commit 9b662ae037

View File

@ -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);
}