1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-08 15:02:10 +03:00

Compile Fix for Netware Port with CodeWarrior.

Noticed By: <normw@bocnet.com.au>


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@106072 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Paul Querna
2004-11-21 05:53:38 +00:00
parent d2faea59df
commit 95d5391b9f

View File

@@ -192,11 +192,13 @@ AP_DECLARE(void) ap_die(int type, request_rec *r)
static void check_pipeline_flush(request_rec *r) static void check_pipeline_flush(request_rec *r)
{ {
apr_bucket *e;
apr_bucket_brigade *bb;
conn_rec *c = r->connection; conn_rec *c = r->connection;
/* ### if would be nice if we could PEEK without a brigade. that would /* ### if would be nice if we could PEEK without a brigade. that would
### allow us to defer creation of the brigade to when we actually ### allow us to defer creation of the brigade to when we actually
### need to send a FLUSH. */ ### need to send a FLUSH. */
apr_bucket_brigade *bb = apr_brigade_create(r->pool, c->bucket_alloc); bb = apr_brigade_create(r->pool, c->bucket_alloc);
/* Flush the filter contents if: /* Flush the filter contents if:
* *
@@ -216,7 +218,7 @@ static void check_pipeline_flush(request_rec *r)
} }
} }
apr_bucket *e = apr_bucket_flush_create(c->bucket_alloc); e = apr_bucket_flush_create(c->bucket_alloc);
/* We just send directly to the connection based filters. At /* We just send directly to the connection based filters. At
* this point, we know that we have seen all of the data * this point, we know that we have seen all of the data