diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-11 00:41:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-11 00:41:09 -0600 |
commit | 4bcfc9075fcc9785f9a7b52dd55885855ba612c8 (patch) | |
tree | e5a6c0cc9c77de7b9685580553e8ce5f87ebfff0 /kdesktop/lockeng.cc | |
parent | 60a25a0fe53314833e60161c57e7f19290f70c63 (diff) | |
download | tdebase-4bcfc9075fcc9785f9a7b52dd55885855ba612c8.tar.gz tdebase-4bcfc9075fcc9785f9a7b52dd55885855ba612c8.zip |
Clean up lock dialog warnings and fix mouse cursor
Diffstat (limited to 'kdesktop/lockeng.cc')
-rw-r--r-- | kdesktop/lockeng.cc | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/kdesktop/lockeng.cc b/kdesktop/lockeng.cc index 3abfd495d..9eb88e1d1 100644 --- a/kdesktop/lockeng.cc +++ b/kdesktop/lockeng.cc @@ -247,7 +247,10 @@ void SaverEngine::handleSecureDialog() void SaverEngine::slotSAKProcessExited() { int retcode = mSAKProcess->exitStatus(); - if ((retcode != 0) && (mSAKProcess->normalExit())) trinity_lockeng_sak_available = FALSE; + if ((retcode != 0) && (mSAKProcess->normalExit())) { + trinity_lockeng_sak_available = FALSE; + printf("[kdesktop] SAK driven secure dialog is not available for use (retcode %d). Check tdmtsak for proper functionality.\n", retcode); fflush(stdout); + } if ((mSAKProcess->normalExit()) && (trinity_lockeng_sak_available == TRUE)) { bool ok = true; |