Revision: 14827 Author: roelf.diedericks Date: Fri Nov 19 01:04:02 2010 Log: Fix issue #132 HTTP/1.1 100 Continue broken with Win2k3 servers, and potentially others
http://code.google.com/p/lusca-cache/source/detail?r=14827 Modified: /branches/LUSCA_HEAD/src/http.c ======================================= --- /branches/LUSCA_HEAD/src/http.c Wed Aug 4 21:50:46 2010 +++ /branches/LUSCA_HEAD/src/http.c Fri Nov 19 01:04:02 2010 @@ -1148,6 +1148,7 @@ if (reply->sline.status >= 100 && reply->sline.status < 200) { debug(1, 1) ("httpReadReply: FD %d: skipping 1xx response!\n", fd); httpReplyReset(reply); + storeEntryReset(entry); httpState->reply_hdr_state = 0; po += done; /* Skip the reply in the incoming buffer */ done = 0; /* So we don't double-account */ -- You received this message because you are subscribed to the Google Groups "lusca-commit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/lusca-commit?hl=en.
