1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-01 04:58:35 +03:00

Small fix from Jérôme Tournier <jerome.tournier@IDEALX.com>

Jeremy.
(This used to be commit 6ce7932520c0e5417e3b8a214a97244d10bdf4ad)
This commit is contained in:
Jeremy Allison 2003-12-16 18:14:10 +00:00
parent 5121bd6ede
commit 2ff5ed9555

View File

@ -45,8 +45,8 @@ sub modify_account
my $ldap_master=connect_ldap_master();
my $modify = $ldap_master->modify ("uid=$login,$basedn",
changes => [
replace => [lmpassword => "$lmpwd"],
replace => [ntpassword => "$ntpwd"],
replace => [sambaLMPassword => "$lmpwd"],
replace => [sambaNTpassword => "$ntpwd"],
replace => [gecos => "$gecos"],
replace => [sambaHomePath => "$homedir"]
]