--- kdebase-4.3.3/apps/kdepasswd/kcm/main.cpp~ 2009-10-30 11:14:32 +0300 +++ kdebase-4.3.3/apps/kdepasswd/kcm/main.cpp 2009-11-02 16:48:05 +0300 @@ -113,19 +113,19 @@ KCMUserAccount::KCMUserAccount( QWidget void KCMUserAccount::slotChangePassword() { - QString bin = KGlobal::dirs()->findExe("kdepasswd"); + QString bin = KGlobal::dirs()->findExe("userpasswd"); if ( bin.isNull() ) { - kDebug() << "kcm_useraccount: kdepasswd was not found."; + kDebug() << "kcm_useraccount: userpasswd was not found."; KMessageBox::sorry ( this, i18n( "A program error occurred: the internal " - "program 'kdepasswd' could not be found. You will " + "program 'userpasswd' could not be found. You will " "not be able to change your password.")); _mw->btnChangePassword->setEnabled(false); return; } QStringList lst; - lst << _ku->loginName(); +// lst << _ku->loginName(); QProcess::startDetached(bin,lst); }