]> git.saurik.com Git - apt.git/blobdiff - methods/http.cc
* merge with apt--ddtp--0
[apt.git] / methods / http.cc
index ba86aa6b654904a4579e397be946d509cb4c7e3a..e2337a9ba3459d1110a15e98a5f5c4591fa1c8fc 100644 (file)
@@ -58,6 +58,7 @@ unsigned long PipelineDepth = 10;
 unsigned long TimeOut = 120;
 bool Debug = false;
 
+
 // CircleBuf::CircleBuf - Circular input buffer                                /*{{{*/
 // ---------------------------------------------------------------------
 /* */
@@ -95,7 +96,7 @@ bool CircleBuf::Read(int Fd)
       // Woops, buffer is full
       if (InP - OutP == Size)
         return true;
-      
+
       // Write the buffer segment
       int Res;
       Res = read(Fd,Buf + (InP%Size),LeftRead());