-rw-r--r-- | libopie2/opiesecurity/multiauthpassword.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libopie2/opiesecurity/multiauthpassword.cpp b/libopie2/opiesecurity/multiauthpassword.cpp index 16c8568..b9c8a39 100644 --- a/libopie2/opiesecurity/multiauthpassword.cpp +++ b/libopie2/opiesecurity/multiauthpassword.cpp | |||
@@ -56,19 +56,19 @@ namespace Security { | |||
56 | * If the users requires authentication... #fixme | 56 | * If the users requires authentication... #fixme |
57 | * | 57 | * |
58 | * @todo fix up at_poweron attribute | 58 | * @todo fix up at_poweron attribute |
59 | */ | 59 | */ |
60 | bool MultiauthPassword::needToAuthenticate(bool at_poweron) | 60 | bool MultiauthPassword::needToAuthenticate(bool at_poweron) |
61 | { | 61 | { |
62 | Config cfg("Security"); | 62 | Config cfg("Security"); |
63 | cfg.setGroup("Misc"); | 63 | cfg.setGroup("Misc"); |
64 | if ( !at_poweron && cfg.readBoolEntry("onStart", true) ) | 64 | if ( !at_poweron && cfg.readBoolEntry("onStart", false) ) |
65 | return true; | 65 | return true; |
66 | else if ( at_poweron && cfg.readBoolEntry("onResume", true) ) | 66 | else if ( at_poweron && cfg.readBoolEntry("onResume", false) ) |
67 | return true; | 67 | return true; |
68 | else | 68 | else |
69 | return false; | 69 | return false; |
70 | } | 70 | } |
71 | 71 | ||
72 | 72 | ||
73 | /** | 73 | /** |
74 | * \brief Require user authentication to unlock and continue | 74 | * \brief Require user authentication to unlock and continue |