From f657f37b3a346dfe7e31bd2cb3e3c32551bceadf Mon Sep 17 00:00:00 2001 From: Luke Leighton Date: Fri, 17 Oct 1997 11:54:30 +0000 Subject: 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) --- source3/pipenetlog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/pipenetlog.c b/source3/pipenetlog.c index 32096b3b84..54769270af 100644 --- a/source3/pipenetlog.c +++ b/source3/pipenetlog.c @@ -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); } -- cgit