summaryrefslogtreecommitdiff
path: root/source3/smbd/process.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2011-08-05 16:58:51 +0200
committerVolker Lendecke <vl@samba.org>2011-08-25 21:36:19 +0200
commitd4c4705e5593a8f048da406fff596229d31d4151 (patch)
tree9a6aad3adeaa4f51da5760e7d792ffbe60ab5349 /source3/smbd/process.c
parent08262fe9647f961bfb2b1eb2b7b9e8ed0318e466 (diff)
downloadsamba-d4c4705e5593a8f048da406fff596229d31d4151.tar.gz
samba-d4c4705e5593a8f048da406fff596229d31d4151.tar.bz2
samba-d4c4705e5593a8f048da406fff596229d31d4151.zip
s3: Pass smbd_server_connection to srv_decrypt_buffer
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r--source3/smbd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index c2ce867b6e..76f0e06cfe 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -465,7 +465,7 @@ static NTSTATUS receive_smb_talloc(TALLOC_CTX *mem_ctx,
}
if (is_encrypted_packet(sconn, (uint8_t *)*buffer)) {
- status = srv_decrypt_buffer(*buffer);
+ status = srv_decrypt_buffer(sconn, *buffer);
if (!NT_STATUS_IS_OK(status)) {
DEBUG(0, ("receive_smb_talloc: SMB decryption failed on "
"incoming packet! Error %s\n",