]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Revert an incorrect removal of flags.storelogiccomplete
authorHenrik Nordstrom <henrik@henriknordstrom.net>
Sun, 30 Mar 2008 13:34:01 +0000 (15:34 +0200)
committerHenrik Nordstrom <henrik@henriknordstrom.net>
Sun, 30 Mar 2008 13:34:01 +0000 (15:34 +0200)
it's a somewhat confusing flag, but needs to be there until the split
of response headers & body is completed.

src/client_side_reply.cc

index 7d1ac081d3217667edfb893792761c5f6acb432d..536777785e11b82eed92ca9638f9eec459903a4e 100644 (file)
@@ -1827,6 +1827,9 @@ clientReplyContext::sendMoreData (StoreIOBuffer result)
         body_buf = buf;
     }
 
+    /* We've got the final data to start pushing... */
+    flags.storelogiccomplete = 1;
+
     reqofs += result.length;
 
     assert(reqofs <= HTTP_REQBUF_SZ || flags.headersSent);