author | zecke <zecke> | 2004-07-17 17:46:51 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-07-17 17:46:51 (UTC) |
commit | 8cc200a72b547bb7e313cfa197c72f91dfe0c759 (patch) (side-by-side diff) | |
tree | cb2622d03615077dab25dc07e295126f11529a9b /libopie2/opiesecurity | |
parent | c225b5a9da381329610ae593684d687d18a19280 (diff) | |
download | opie-8cc200a72b547bb7e313cfa197c72f91dfe0c759.zip opie-8cc200a72b547bb7e313cfa197c72f91dfe0c759.tar.gz opie-8cc200a72b547bb7e313cfa197c72f91dfe0c759.tar.bz2 |
Change the default for needToAuthenticate
-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 @@ -61,9 +61,9 @@ bool MultiauthPassword::needToAuthenticate(bool at_poweron) { Config cfg("Security"); cfg.setGroup("Misc"); - if ( !at_poweron && cfg.readBoolEntry("onStart", true) ) + if ( !at_poweron && cfg.readBoolEntry("onStart", false) ) return true; - else if ( at_poweron && cfg.readBoolEntry("onResume", true) ) + else if ( at_poweron && cfg.readBoolEntry("onResume", false) ) return true; else return false; |