1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4-dsdb: Changed filter to find the account of a user by samAccountName

In newuser, a filter by dn was given to setpassword to find the account whose password is to be reset.
It appears however that if given filter of type (dn=CN=smth) Windows fails to return the entry, and the
tests that use newuser fail against it. Changed to use samAccountName instead.
This commit is contained in:
Nadezhda Ivanova 2010-11-23 21:54:09 +02:00
parent 5e0130c51e
commit e95a350682

View File

@ -337,7 +337,7 @@ member: %s
# Sets the password for it
if setpassword:
self.setpassword("(dn=" + user_dn + ")", password,
self.setpassword("(samAccountName=%s)" % username, password,
force_password_change_at_next_login_req)
except:
self.transaction_cancel()
@ -362,7 +362,6 @@ member: %s
raise Exception('Unable to find user "%s"' % (username or search_filter))
assert(len(res) == 1)
user_dn = res[0].dn
setpw = """
dn: %s
changetype: modify