1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-07 20:23:50 +03:00

Subtract NT_STATUS from common flag, don't add it...

Jeremy.
This commit is contained in:
Jeremy Allison
-
parent 8adf0cd27a
commit 4e73faa7b4
2 changed files with 7 additions and 7 deletions

View File

@@ -928,11 +928,11 @@ const char *smb_fn_name(int type)
Helper functions for contruct_reply.
****************************************************************************/
static uint32 common_flags2 = FLAGS2_LONG_PATH_COMPONENTS|FLAGS2_EXTENDED_SECURITY;
static uint32 common_flags2 = FLAGS2_LONG_PATH_COMPONENTS|FLAGS2_EXTENDED_SECURITY|FLAGS2_32_BIT_ERROR_CODES;
void add_to_common_flags2(uint32 v)
void remove_from_common_flags2(uint32 v)
{
common_flags2 |= v;
common_flags2 &= ~v;
}
void construct_reply_common(char *inbuf,char *outbuf)

View File

@@ -473,8 +473,8 @@ static int reply_sesssetup_and_X_spnego(connection_struct *conn, char *inbuf,
if (global_client_caps == 0) {
global_client_caps = IVAL(inbuf,smb_vwv10);
if (global_client_caps & CAP_STATUS32) {
add_to_common_flags2(FLAGS2_32_BIT_ERROR_CODES);
if (!(global_client_caps & CAP_STATUS32)) {
remove_from_common_flags2(FLAGS2_32_BIT_ERROR_CODES);
}
}
@@ -623,8 +623,8 @@ int reply_sesssetup_and_X(connection_struct *conn, char *inbuf,char *outbuf,
if(global_client_caps == 0) {
global_client_caps = IVAL(inbuf,smb_vwv11);
if (global_client_caps & CAP_STATUS32) {
add_to_common_flags2(FLAGS2_32_BIT_ERROR_CODES);
if (!(global_client_caps & CAP_STATUS32)) {
remove_from_common_flags2(FLAGS2_32_BIT_ERROR_CODES);
}
/* client_caps is used as final determination if client is NT or Win95.