diff options
author | Jeremy Allison <jra@samba.org> | 2002-05-31 22:18:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2002-05-31 22:18:07 +0000 |
commit | b5053d0a5f47e42022962246c89d08369c496232 (patch) | |
tree | 6ccb680a066ce2b3550ca92d241410e8b1fbfc6b /source3/smbd/sesssetup.c | |
parent | 4e71eae06eb4a2d67edd3767dc888c5c5de3cfc9 (diff) | |
download | samba-b5053d0a5f47e42022962246c89d08369c496232.tar.gz samba-b5053d0a5f47e42022962246c89d08369c496232.tar.bz2 samba-b5053d0a5f47e42022962246c89d08369c496232.zip |
Removed some unused variables - tidy up some formating, add struct to
client state to implement smb signing - this is a test at present.
Jeremy.
(This used to be commit a234e303558a25c4ea26b7f6788006e4fee651bf)
Diffstat (limited to 'source3/smbd/sesssetup.c')
-rw-r--r-- | source3/smbd/sesssetup.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/smbd/sesssetup.c b/source3/smbd/sesssetup.c index cdddb37932..867b00ff5c 100644 --- a/source3/smbd/sesssetup.c +++ b/source3/smbd/sesssetup.c @@ -236,8 +236,7 @@ static int reply_spnego_negotiate(connection_struct *conn, DATA_BLOB secblob; int i; uint32 ntlmssp_command, neg_flags, chal_flags; - DATA_BLOB sess_key, chal, spnego_chal, extra_data; - char *workstation, *domain; + DATA_BLOB chal, spnego_chal, extra_data; const uint8 *cryptkey; BOOL got_kerberos = False; NTSTATUS nt_status; @@ -313,7 +312,7 @@ static int reply_spnego_negotiate(connection_struct *conn, NTLMSSP_CHAL_TARGET_INFO; { - DATA_BLOB domain_blob, netbios_blob, realm_blob, ident_info_blob; + DATA_BLOB domain_blob, netbios_blob, realm_blob; msrpc_gen(&domain_blob, "U", |