summaryrefslogtreecommitdiff
authorzecke <zecke>2003-09-19 16:44:24 (UTC)
committer zecke <zecke>2003-09-19 16:44:24 (UTC)
commit42a5104340694255dc514514e7621ac2cee026fe (patch) (unidiff)
tree34aaeff901102918e2bec39e0f32b365901a0a55
parent6fc0216161b4ad62cd407d2a36d78d8bd88f4ed0 (diff)
downloadopie-42a5104340694255dc514514e7621ac2cee026fe.zip
opie-42a5104340694255dc514514e7621ac2cee026fe.tar.gz
opie-42a5104340694255dc514514e7621ac2cee026fe.tar.bz2
Use local config file instead of a global....
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/transferserver.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/launcher/transferserver.cpp b/core/launcher/transferserver.cpp
index fde6f8b..2180577 100644
--- a/core/launcher/transferserver.cpp
+++ b/core/launcher/transferserver.cpp
@@ -217,12 +217,12 @@ bool SyncAuthentication::checkPassword( const QString& password )
217 if ( lock ) return FALSE; 217 if ( lock ) return FALSE;
218 218
219 ++lock; 219 ++lock;
220 220
221 /* 221 /*
222 * we need to support old Sync software and QtopiaDesktop 222 * we need to support old Sync software and QtopiaDesktop
223 */ 223 */
224 if ( password.left(6) == "Qtopia" || password.left(6) == "rootme" ) { 224 if ( password.left(6) == "Qtopia" || password.left(6) == "rootme" ) {
225 Config cfg( QPEApplication::qpeDir()+"/etc/Security.conf", Config::File ); 225 Config cfg( "Security.conf" );
226 cfg.setGroup("Sync"); 226 cfg.setGroup("Sync");
227 QStringList pwds = cfg.readListEntry("Passwords",' '); 227 QStringList pwds = cfg.readListEntry("Passwords",' ');
228 for (QStringList::ConstIterator it=pwds.begin(); it!=pwds.end(); ++it) { 228 for (QStringList::ConstIterator it=pwds.begin(); it!=pwds.end(); ++it) {