1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-25 14:50:24 +03:00

set the wrong info level (0x0C00 0000 instead of 0xC000 0000) so that

nt got confused and thought that the server password had been set instead
of refused.  this is for the SRV_PWSET response.
(This used to be commit f9fbcad42ec20da56466054e1984e391d03b3204)
This commit is contained in:
Luke Leighton 1997-10-17 11:54:30 +00:00
parent 34e2b0132e
commit f657f37b3a

View File

@ -446,7 +446,7 @@ static void api_lsa_srv_pwset( user_struct *vuser,
/* construct reply. always indicate failure. nt keeps going... */
*rdata_len = lsa_reply_srv_pwset(&q_a, *rdata + 0x18, *rdata,
&srv_cred,
NT_STATUS_WRONG_PASSWORD|0xC000000);
NT_STATUS_WRONG_PASSWORD|0xC0000000);
}