]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* If no data is available at this point of time we need to switch into the
authorRuediger Pluem <rpluem@apache.org>
Sat, 8 Dec 2007 09:23:26 +0000 (09:23 +0000)
committerRuediger Pluem <rpluem@apache.org>
Sat, 8 Dec 2007 09:23:26 +0000 (09:23 +0000)
  BODY_CHUNK_PART state like we do several lines later in the code in the
  same situation.

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@602349 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_filters.c

index f18c781f821bd121da8692ad02377cf518657383..f3a25f69b2b2e14ffdf836d42d03eafa3ed03f17 100644 (file)
@@ -243,6 +243,7 @@ apr_status_t ap_http_filter(ap_filter_t *f, apr_bucket_brigade *b,
             if (block == APR_NONBLOCK_READ &&
                 ( (rv == APR_SUCCESS && APR_BRIGADE_EMPTY(bb)) ||
                   (APR_STATUS_IS_EAGAIN(rv)) )) {
+                ctx->state = BODY_CHUNK_PART;
                 return APR_EAGAIN;
             }