summaryrefslogtreecommitdiff
path: root/noncore
authorandyq <andyq>2002-10-16 23:07:28 (UTC)
committer andyq <andyq>2002-10-16 23:07:28 (UTC)
commit196a3f566bdc5bd6188f2265e05adbdb519a6e09 (patch) (unidiff)
tree522f3da8a87ca68b1b29d86a5b47f25dddddb6bd /noncore
parent98bf2fd8027b5e10a82c0f4bde27d7977b919bcc (diff)
downloadopie-196a3f566bdc5bd6188f2265e05adbdb519a6e09.zip
opie-196a3f566bdc5bd6188f2265e05adbdb519a6e09.tar.gz
opie-196a3f566bdc5bd6188f2265e05adbdb519a6e09.tar.bz2
Now handles commented out servers nicely
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/aqpkg/datamgr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/settings/aqpkg/datamgr.cpp b/noncore/settings/aqpkg/datamgr.cpp
index 7c49621..d929c39 100644
--- a/noncore/settings/aqpkg/datamgr.cpp
+++ b/noncore/settings/aqpkg/datamgr.cpp
@@ -86,7 +86,7 @@ void DataManager :: loadServers()
86 while ( fgets( line, sizeof line, fp) != NULL ) 86 while ( fgets( line, sizeof line, fp) != NULL )
87 { 87 {
88 lineStr = line; 88 lineStr = line;
89 if ( lineStr.startsWith( "src" ) ) //|| lineStr.startsWith( "#src" ) || lineStr.startsWith( "# src" ) ) 89 if ( lineStr.startsWith( "src" ) || lineStr.startsWith( "#src" ) || lineStr.startsWith( "# src" ) )
90 { 90 {
91 char alias[20]; 91 char alias[20];
92 char url[100]; 92 char url[100];