-rw-r--r-- | noncore/settings/aqpkg/datamgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/settings/aqpkg/datamgr.cpp b/noncore/settings/aqpkg/datamgr.cpp index 3933a22..0159a79 100644 --- a/noncore/settings/aqpkg/datamgr.cpp +++ b/noncore/settings/aqpkg/datamgr.cpp | |||
@@ -241,29 +241,29 @@ void DataManager :: writeOutIpkgConf() | |||
241 | out << "#"; | 241 | out << "#"; |
242 | out << "option http_proxy " << httpProxy << endl; | 242 | out << "option http_proxy " << httpProxy << endl; |
243 | } | 243 | } |
244 | 244 | ||
245 | if ( !ftpProxyEnabled && ftpProxy == "" ) | 245 | if ( !ftpProxyEnabled && ftpProxy == "" ) |
246 | out << "#option ftp_proxy http://proxy.tld:3128" << endl; | 246 | out << "#option ftp_proxy http://proxy.tld:3128" << endl; |
247 | else | 247 | else |
248 | { | 248 | { |
249 | if ( !ftpProxyEnabled ) | 249 | if ( !ftpProxyEnabled ) |
250 | out << "#"; | 250 | out << "#"; |
251 | out << "option ftp_proxy " << ftpProxy << endl; | 251 | out << "option ftp_proxy " << ftpProxy << endl; |
252 | } | 252 | } |
253 | if ( proxyUsername == "" ) | 253 | if ( proxyUsername == "" || (!httpProxyEnabled && !ftpProxyEnabled) ) |
254 | out << "#option proxy_username <username>" << endl; | 254 | out << "#option proxy_username <username>" << endl; |
255 | else | 255 | else |
256 | out << "option proxy_username " << proxyUsername << endl; | 256 | out << "option proxy_username " << proxyUsername << endl; |
257 | if ( proxyPassword == "" ) | 257 | if ( proxyPassword == "" || (!httpProxyEnabled && !ftpProxyEnabled) ) |
258 | out << "#option proxy_password <password>" << endl << endl; | 258 | out << "#option proxy_password <password>" << endl << endl; |
259 | else | 259 | else |
260 | out << "option proxy_password " << proxyPassword << endl<< endl; | 260 | out << "option proxy_password " << proxyPassword << endl<< endl; |
261 | 261 | ||
262 | out << "# Offline mode (for use in constructing flash images offline)" << endl; | 262 | out << "# Offline mode (for use in constructing flash images offline)" << endl; |
263 | out << "#option offline_root target" << endl; | 263 | out << "#option offline_root target" << endl; |
264 | 264 | ||
265 | 265 | ||
266 | out.close(); | 266 | out.close(); |
267 | } | 267 | } |
268 | 268 | ||
269 | 269 | ||