From: Jeremy Allison Date: Thu, 19 Aug 2004 22:47:05 +0000 (+0000) Subject: r1939: Ensure with my new change we set extended security in flags2 in X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5901 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b80b46b8b76ead72c17dc65f2de4c0cc0b263c7;p=thirdparty%2Fsamba.git r1939: Ensure with my new change we set extended security in flags2 in the negprot reply. Jeremy. --- diff --git a/source/smbd/negprot.c b/source/smbd/negprot.c index 5ee8abbe6ba..447073acd84 100644 --- a/source/smbd/negprot.c +++ b/source/smbd/negprot.c @@ -250,6 +250,9 @@ static int reply_nt1(char *inbuf, char *outbuf) negotiate_spnego = True; capabilities |= CAP_EXTENDED_SECURITY; add_to_common_flags2(FLAGS2_EXTENDED_SECURITY); + /* Ensure FLAGS2_EXTENDED_SECURITY gets set in this reply (already + partially constructed. */ + SSVAL(outbuf,smb_flg2, SVAL(outbuf,smb_flg2) | FLAGS2_EXTENDED_SECURITY); } capabilities |= CAP_NT_SMBS|CAP_RPC_REMOTE_APIS|CAP_UNICODE;