diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-21 19:57:41 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-21 20:49:17 +0100 |
commit | c85a4c9ba4a7de65a7850f6f9708df66bd24deea (patch) | |
tree | 5205ef1da477ed65127276d684cf48a7edfbe7d5 /source3/smbd/smb2_negprot.c | |
parent | 6a149022976fe6a5579ec9afc7a4d2dcb44dc8af (diff) | |
download | samba-c85a4c9ba4a7de65a7850f6f9708df66bd24deea.tar.gz |
s3: Move the global variable Protocol to struct smbd_server_connection
Diffstat (limited to 'source3/smbd/smb2_negprot.c')
-rw-r--r-- | source3/smbd/smb2_negprot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smb2_negprot.c b/source3/smbd/smb2_negprot.c index 5b97c65d79c..4d2cdca6248 100644 --- a/source3/smbd/smb2_negprot.c +++ b/source3/smbd/smb2_negprot.c @@ -112,7 +112,7 @@ NTSTATUS smbd_smb2_request_process_negprot(struct smbd_smb2_request *req) return smbd_smb2_request_error(req, NT_STATUS_INVALID_PARAMETER); } - set_Protocol(PROTOCOL_SMB2); + set_Protocol(req->sconn, PROTOCOL_SMB2); if (get_remote_arch() != RA_SAMBA) { set_remote_arch(RA_VISTA); |