diff options
Diffstat (limited to 'tdessh/sshdlg.cpp')
-rw-r--r-- | tdessh/sshdlg.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tdessh/sshdlg.cpp b/tdessh/sshdlg.cpp index a43c9d0..df30045 100644 --- a/tdessh/sshdlg.cpp +++ b/tdessh/sshdlg.cpp @@ -41,12 +41,12 @@ TDEsshDialog::~TDEsshDialog() } -bool TDEsshDialog::checkPassword(const char *password) +bool TDEsshDialog::checkPassword(const TQString &password) { SshProcess proc(m_Host, m_User); proc.setStub(m_Stub); - int ret = proc.checkInstall(password); + int ret = proc.checkInstall(password.local8Bit()); switch (ret) { case -1: |