From 2ff5ed955566e676e9d683c72e315a13a555b4dd Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 16 Dec 2003 18:14:10 +0000 Subject: Small fix from Jérôme Tournier Jeremy. (This used to be commit 6ce7932520c0e5417e3b8a214a97244d10bdf4ad) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/LDAP/smbldap-tools/smbldap-migrate-accounts.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'examples/LDAP') diff --git a/examples/LDAP/smbldap-tools/smbldap-migrate-accounts.pl b/examples/LDAP/smbldap-tools/smbldap-migrate-accounts.pl index 0a66eaaa08..54e4d7f7e3 100755 --- a/examples/LDAP/smbldap-tools/smbldap-migrate-accounts.pl +++ b/examples/LDAP/smbldap-tools/smbldap-migrate-accounts.pl @@ -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"] ] -- cgit