mirror of
https://github.com/samba-team/samba.git
synced 2025-02-14 01:57:53 +03:00
r6069: Fix for bug #2541. Ensure we recognise LANMAN2.1 as OS/2 and select LANMAN2
protocol, ensure the EA size is always correctly set on a query for a file with no EA's. Jeremy.
This commit is contained in:
parent
e15c36e949
commit
d6ad1f8df0
@ -419,6 +419,7 @@ static const struct {
|
||||
{"NT LANMAN 1.0", "NT1", reply_nt1, PROTOCOL_NT1},
|
||||
{"NT LM 0.12", "NT1", reply_nt1, PROTOCOL_NT1},
|
||||
{"POSIX 2", "NT1", reply_nt1, PROTOCOL_NT1},
|
||||
{"LANMAN2.1", "LANMAN2", reply_lanman2, PROTOCOL_LANMAN2},
|
||||
{"LM1.2X002", "LANMAN2", reply_lanman2, PROTOCOL_LANMAN2},
|
||||
{"Samba", "LANMAN2", reply_lanman2, PROTOCOL_LANMAN2},
|
||||
{"DOS LM1.2X002", "LANMAN2", reply_lanman2, PROTOCOL_LANMAN2},
|
||||
|
@ -237,8 +237,8 @@ static unsigned int fill_ea_buffer(TALLOC_CTX *mem_ctx, char *pdata, unsigned in
|
||||
|
||||
SMB_ASSERT(total_data_size >= 4);
|
||||
|
||||
SIVAL(pdata,0,0);
|
||||
if (!lp_ea_support(SNUM(conn))) {
|
||||
SIVAL(pdata,4,0);
|
||||
return 4;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user