mirror of
https://github.com/samba-team/samba.git
synced 2025-07-31 20:22:15 +03:00
clearing up connection-related stuff. password credentials were messing
up.
added a complicated prompt which i don't like, but it tells you
domain\user@hostname$
(This used to be commit 338d08f69b
)
This commit is contained in:
@ -85,16 +85,8 @@ BOOL pwd_compare(struct pwd_info *pwd1, struct pwd_info *pwd2)
|
||||
pwd_obfuscate(pwd2);
|
||||
return True;
|
||||
}
|
||||
if (pwd1->crypted || pwd2->crypted)
|
||||
{
|
||||
DEBUG(5,("pwd_compare: cannot compare crypted passwords\n"));
|
||||
pwd_obfuscate(pwd1);
|
||||
pwd_obfuscate(pwd2);
|
||||
return False;
|
||||
}
|
||||
|
||||
if (!pwd1->crypted && !pwd2->crypted &&
|
||||
!pwd1->null_pwd && !pwd2->null_pwd &&
|
||||
if (!pwd1->null_pwd && !pwd2->null_pwd &&
|
||||
!pwd1->cleartext && !pwd2->cleartext)
|
||||
{
|
||||
if (memcmp(pwd1->smb_nt_pwd, pwd2->smb_nt_pwd, 16) == 0)
|
||||
|
Reference in New Issue
Block a user