mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
Subtract NT_STATUS from common flag, don't add it...
Jeremy.
(This used to be commit 4e73faa7b4
)
This commit is contained in:
parent
b4fa65d0ad
commit
27891bdef1
@ -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)
|
||||
|
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user