From 24ec382560de356704bcbf6cd1ee52182231e970 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 13 Jul 2006 14:31:11 +0000 Subject: [PATCH] r17009: set the protocol version correct metze --- source/smb_server/smb2/negprot.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/smb_server/smb2/negprot.c b/source/smb_server/smb2/negprot.c index 66ba9027464..957bb9204af 100644 --- a/source/smb_server/smb2/negprot.c +++ b/source/smb_server/smb2/negprot.c @@ -88,6 +88,8 @@ static NTSTATUS smb2srv_negprot_backend(struct smb2srv_request *req, struct smb2 struct timeval current_time; struct timeval boot_time; + req->smb_conn->negotiate.protocol = PROTOCOL_SMB2; + current_time = timeval_current(); /* TODO: handle timezone?! */ boot_time = timeval_current(); /* TODO: fix me */