From 6db0c5f228d12fc1a1ef861717d1dc4a3c9d6a6c Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 28 Nov 2018 23:51:20 +0900 Subject: Improved previous commit using local8Bit() in place of utf8() when a password is transmitted over pipes to other processes. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michele Calgaro Signed-off-by: Slávek Banko --- kdesktop/minicli.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kdesktop/minicli.cpp') diff --git a/kdesktop/minicli.cpp b/kdesktop/minicli.cpp index 9fb4a283c..4b8d390b3 100644 --- a/kdesktop/minicli.cpp +++ b/kdesktop/minicli.cpp @@ -483,7 +483,7 @@ int Minicli::runCommand() proc_checkpwd.setScheduler(m_iScheduler); } - if (proc_checkpwd.checkInstall(m_dlg->lePassword->password().utf8()) != 0) + if (proc_checkpwd.checkInstall(m_dlg->lePassword->password().local8Bit()) != 0) { KMessageBox::sorry(this, i18n("Incorrect password; please try again.")); return 1; @@ -534,7 +534,7 @@ int Minicli::runCommand() sigprocmask(SIG_BLOCK, &sset, 0L); proc.setTerminal(true); proc.setErase(true); - _exit(proc.exec(m_dlg->lePassword->password().utf8())); + _exit(proc.exec(m_dlg->lePassword->password().local8Bit())); return 0; } else -- cgit v1.2.3