diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-28 23:51:20 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2018-11-28 23:51:20 +0900 |
commit | 6db0c5f228d12fc1a1ef861717d1dc4a3c9d6a6c (patch) | |
tree | 972d106294d740e92c586300da66d011bfe9d13e /tdepasswd/kcm/main.cpp | |
parent | 6ae10fc66ed3c35e98e49bac8bf6670f0a9e2d6b (diff) | |
download | tdebase-6db0c5f228d12fc1a1ef861717d1dc4a3c9d6a6c.tar.gz tdebase-6db0c5f228d12fc1a1ef861717d1dc4a3c9d6a6c.zip |
Improved previous commit using local8Bit() in place of utf8() when a
password is transmitted over pipes to other processes.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'tdepasswd/kcm/main.cpp')
-rw-r--r-- | tdepasswd/kcm/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tdepasswd/kcm/main.cpp b/tdepasswd/kcm/main.cpp index 9b11acbcd..0751c997e 100644 --- a/tdepasswd/kcm/main.cpp +++ b/tdepasswd/kcm/main.cpp @@ -221,7 +221,7 @@ void KCMUserAccount::save() } ChfnProcess *proc = new ChfnProcess(); - ret = proc->exec(password.utf8(), _mw->leRealname->text().utf8() ); + ret = proc->exec(password.local8Bit(), _mw->leRealname->text().local8Bit() ); if ( ret ) { if ( ret == ChfnProcess::PasswordError ) |