diff options
author | Stefan Metzmacher <metze@samba.org> | 2014-06-11 14:28:13 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-08-06 09:51:13 +0200 |
commit | 076055594df808006d66e527ae45d27e86fb13f4 (patch) | |
tree | 9b794a769e1e4165690c6de2ee856b550c35cf57 /source3/smbd/reply.c | |
parent | bd97eee2427139606bf6caedd8a407c4b9c3fa06 (diff) | |
download | samba-076055594df808006d66e527ae45d27e86fb13f4.tar.gz samba-076055594df808006d66e527ae45d27e86fb13f4.tar.xz samba-076055594df808006d66e527ae45d27e86fb13f4.zip |
s3:smbd: remove unused 'sconn' from is_encrypted_packet()
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 9722307f53..22e06f2c79 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -4628,7 +4628,7 @@ bool is_valid_writeX_buffer(struct smbd_server_connection *sconn, struct files_struct *fsp = NULL; NTSTATUS status; - if (is_encrypted_packet(sconn, inbuf)) { + if (is_encrypted_packet(inbuf)) { /* Can't do this on encrypted * connections. */ return false; |