Summary: | KNode doesn't save passwords in KWallet correctly | ||
---|---|---|---|
Product: | [Unmaintained] knode | Reporter: | P. Varet <p.varet> |
Component: | general | Assignee: | kdepim bugs <kdepim-bugs> |
Status: | RESOLVED FIXED | ||
Severity: | normal | CC: | thomas-ml, vkrause |
Priority: | NOR | ||
Version First Reported In: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Gentoo Packages | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: |
Description
P. Varet
2003-12-14 19:20:17 UTC
Exactly the same here (CVS Head from 2003-12-15). The password is stored correctly in the wallet, but knode doesn't use it. Knode seems to only access the wallet when being closed (judging from kwallets password dialog). Same for me. CVS HEAD from 16.12.2003. First thought was, it is bug is caused because I use it from kontact. Thomas Subject: kdelibs/kwallet/client CVS commit by vkrause: Fix a typo in folderDoesNotExist() causing it to always return true. Fixes #70425. CCMAIL: 70425-done@bugs.kde.org M +1 -1 kwallet.cc 1.41 --- kdelibs/kwallet/client/kwallet.cc #1.40:1.41 @@ -618,5 +618,5 @@ void Wallet::walletOpenResult(int id) { bool Wallet::folderDoesNotExist(const QString& wallet, const QString& folder) { -DCOPReply r = DCOPRef("kded", "kwalletd").call("fodlerDoesNotExist", wallet, folder); +DCOPReply r = DCOPRef("kded", "kwalletd").call("folderDoesNotExist", wallet, folder); bool rc = true; if (r.isValid()) { |