author | clem <clem> | 2004-09-17 21:05:46 (UTC) |
---|---|---|
committer | clem <clem> | 2004-09-17 21:05:46 (UTC) |
commit | dcb3342e9f310425ed1abeaa6c00a3132ec609b8 (patch) (unidiff) | |
tree | 383be9477bc59940722094ca6854186afa80e7bd /libopie2/opiesecurity | |
parent | f35f5bef4c8bad180a02b1804fe0ce8fd7c451bd (diff) | |
download | opie-dcb3342e9f310425ed1abeaa6c00a3132ec609b8.zip opie-dcb3342e9f310425ed1abeaa6c00a3132ec609b8.tar.gz opie-dcb3342e9f310425ed1abeaa6c00a3132ec609b8.tar.bz2 |
if there are no configured plugins, we simply return 0 to let the user in
-rw-r--r-- | libopie2/opiesecurity/multiauthcommon.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/libopie2/opiesecurity/multiauthcommon.cpp b/libopie2/opiesecurity/multiauthcommon.cpp index d8e26d5..9de62d2 100644 --- a/libopie2/opiesecurity/multiauthcommon.cpp +++ b/libopie2/opiesecurity/multiauthcommon.cpp | |||
@@ -74,4 +74,13 @@ int runPlugins() { | |||
74 | config.setGroup("Plugins"); | 74 | config.setGroup("Plugins"); |
75 | QStringList plugins = config.readListEntry("IncludePlugins", ','); | 75 | QStringList plugins = config.readListEntry("IncludePlugins", ','); |
76 | /* if there are no configured plugins, we simply return 0 to | ||
77 | * let the user in: | ||
78 | */ | ||
79 | if (plugins.isEmpty() == true) { | ||
80 | owarn << "No authentication plugin has been configured yet!" << oendl; | ||
81 | odebug << "Letting the user in..." << oendl; | ||
82 | if(oi) delete oi; | ||
83 | return 0; | ||
84 | } | ||
76 | config.setGroup("Misc"); | 85 | config.setGroup("Misc"); |
77 | int nbSuccessMin = config.readNumEntry("nbSuccessMin", 1); | 86 | int nbSuccessMin = config.readNumEntry("nbSuccessMin", 1); |