File kdesu-settings.diff of Package kdelibs3
Subject: Change kdesu settings
From: Lubos Lunak
Bug: 216796
Relates: kdelibs4/kdesu-settings.diff
Patch-upstream: never
Change kdesu(d) password keeping timeout only to 5 minutes and enable
it by default (to match kdesu using sudo in 10.3 behaviour).
KDE3 needs a hack in KPasswordDialog for enabling it by default.
Update: Change the timeout back to 2 hours (bnc#404521).
--- kdesu/defaults.h.sav 2008-05-20 17:25:26.000000000 +0200
+++ kdesu/defaults.h 2008-05-20 17:55:26.000000000 +0200
@@ -13,8 +13,9 @@
#ifndef __Defaults_h_included__
#define __Defaults_h_included__
-const int defTimeout = 120*60;
+/*const int defTimeout = 120*60;*/
+const int defTimeout = 120*60;
const int defEchoMode = 0;
-const int defKeep = false;
+const int defKeep = true;
#endif
--- kdeui/kpassdlg.cpp.sav 2008-05-20 17:47:50.000000000 +0200
+++ kdeui/kpassdlg.cpp 2008-05-20 17:55:52.000000000 +0200
@@ -49,6 +49,8 @@
#include "kpassdlg.h"
+#include "../kdesu/defaults.h"
+
/*
* Password line editor.
*/
@@ -337,7 +339,8 @@ void KPasswordDialog::init()
KConfig* const cfg = KGlobal::config();
const KConfigGroupSaver saver(cfg, "Passwords");
- if (m_Keep && cfg->readBoolEntry("Keep", false))
+ bool def = ( qstrcmp( qAppName(), "kdesu" ) == 0 ? defKeep : false );
+ if (m_Keep && cfg->readBoolEntry("Keep", def))
++m_Keep;
m_pMain = new QWidget(this);