View | Details | Raw Unified | Return to bug 37186
Collapse All | Expand All

(-)a/apt/methods/http.cc (-1 / +6 lines)
Lines 302-308 bool ServerState::Open() Link Here
302
	 Proxy = DefProxy;
302
	 Proxy = DefProxy;
303
   }
303
   }
304
   else
304
   else
305
      Proxy = getenv("http_proxy");
305
   {
306
      string Unquoted;
307
      const char *Quoted = getenv("http_proxy");
308
      ParseQuoteWord(Quoted,Unquoted);
309
      Proxy = Unquoted;
310
   }
306
   
311
   
307
   // Parse no_proxy, a , separated list of domains
312
   // Parse no_proxy, a , separated list of domains
308
   if (getenv("no_proxy") != 0)
313
   if (getenv("no_proxy") != 0)

Return to bug 37186