diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-17 11:54:30 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-17 11:54:30 +0000 |
commit | f657f37b3a346dfe7e31bd2cb3e3c32551bceadf (patch) | |
tree | 433e0fc94a6c077373886a416a042c2946198c05 /source3 | |
parent | 34e2b0132e03568cf8951bd314a3e7e0d2f6efc7 (diff) | |
download | samba-f657f37b3a346dfe7e31bd2cb3e3c32551bceadf.tar.gz samba-f657f37b3a346dfe7e31bd2cb3e3c32551bceadf.tar.bz2 samba-f657f37b3a346dfe7e31bd2cb3e3c32551bceadf.zip |
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)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/pipenetlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |