-rw-r--r-- | noncore/settings/aqpkg/datamgr.cpp | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/noncore/settings/aqpkg/datamgr.cpp b/noncore/settings/aqpkg/datamgr.cpp index b6e6e37..bb86766 100644 --- a/noncore/settings/aqpkg/datamgr.cpp +++ b/noncore/settings/aqpkg/datamgr.cpp | |||
@@ -83,13 +83,6 @@ void DataManager :: loadServers() | |||
83 | } | 83 | } |
84 | else | 84 | else |
85 | { | 85 | { |
86 | { | ||
87 | cout << "Before ipkg.conf read" << endl; | ||
88 | vector<Server>::iterator it; | ||
89 | for ( it = serverList.begin() ; it != serverList.end() ; ++it ) | ||
90 | cout << "servername - " << it->getServerName() << endl; | ||
91 | } | ||
92 | |||
93 | while ( fgets( line, sizeof line, fp) != NULL ) | 86 | while ( fgets( line, sizeof line, fp) != NULL ) |
94 | { | 87 | { |
95 | lineStr = line; | 88 | lineStr = line; |
@@ -104,8 +97,6 @@ void DataManager :: loadServers() | |||
104 | // is next. | 97 | // is next. |
105 | // Should Handle #src, # src, src, and combinations of | 98 | // Should Handle #src, # src, src, and combinations of |
106 | sscanf( lineStr, "%*[^r]%*[^ ] %s %s", alias, url ); | 99 | sscanf( lineStr, "%*[^r]%*[^ ] %s %s", alias, url ); |
107 | cout << "Adding alias " << alias << " to list" << endl; | ||
108 | cout << lineStr << endl; | ||
109 | Server s( alias, url ); | 100 | Server s( alias, url ); |
110 | serverList.push_back( s ); | 101 | serverList.push_back( s ); |
111 | 102 | ||
@@ -121,13 +112,6 @@ void DataManager :: loadServers() | |||
121 | destList.push_back( d ); | 112 | destList.push_back( d ); |
122 | } | 113 | } |
123 | } | 114 | } |
124 | { | ||
125 | cout << "After ipkg.conf read" << endl; | ||
126 | vector<Server>::iterator it; | ||
127 | for ( it = serverList.begin() ; it != serverList.end() ; ++it ) | ||
128 | cout << "servername - " << it->getServerName() << endl; | ||
129 | } | ||
130 | |||
131 | } | 115 | } |
132 | fclose( fp ); | 116 | fclose( fp ); |
133 | 117 | ||