diff options
author | Jeremy Allison <jra@samba.org> | 2008-01-04 12:56:23 -0800 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2008-01-04 12:56:23 -0800 |
commit | c4e5a505043965eec77b5bb9bc60957e8f3b97c8 (patch) | |
tree | 83a3a31f447e5fabe3433c3ca5791c881f7aea26 /source/smbd/sesssetup.c | |
parent | a4ef828102417f04af1e9823c89404e77e4fd5c1 (diff) | |
download | samba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.tar.gz samba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.tar.xz samba-c4e5a505043965eec77b5bb9bc60957e8f3b97c8.zip |
Refactor the crypto code after a very helpful conversation
with Volker. Mostly making sure we have data on the incoming
packet type, not stored in the smb header.
Jeremy.
Diffstat (limited to 'source/smbd/sesssetup.c')
-rw-r--r-- | source/smbd/sesssetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/sesssetup.c b/source/smbd/sesssetup.c index 8ca012ff248..e44a540554b 100644 --- a/source/smbd/sesssetup.c +++ b/source/smbd/sesssetup.c @@ -139,7 +139,7 @@ static void reply_sesssetup_blob(connection_struct *conn, } show_msg((char *)req->outbuf); - send_smb(smbd_server_fd(),(char *)req->outbuf); + srv_send_smb(smbd_server_fd(),(char *)req->outbuf,req->encrypted); TALLOC_FREE(req->outbuf); } |