From 89690bfe02703853c3e987d1e5c4d9878c4d28f0 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Tue, 23 Mar 2004 06:01:52 +0000 Subject: nginx-0.0.3-2004-03-23-09:01:52 import --- src/core/ngx_output_chain.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/core/ngx_output_chain.c') diff --git a/src/core/ngx_output_chain.c b/src/core/ngx_output_chain.c index 55c4a50a3..285bd8340 100644 --- a/src/core/ngx_output_chain.c +++ b/src/core/ngx_output_chain.c @@ -28,13 +28,13 @@ int ngx_output_chain(ngx_output_chain_ctx_t *ctx, ngx_chain_t *in) if (ctx->in == NULL) { if (in == NULL) { - return ctx->output_filter(ctx->output_ctx, in); + return ctx->output_filter(ctx->filter_ctx, in); } if (in->next == NULL && (!ngx_output_chain_need_to_copy(ctx, in->hunk))) { - return ctx->output_filter(ctx->output_ctx, in); + return ctx->output_filter(ctx->filter_ctx, in); } } @@ -153,7 +153,7 @@ int ngx_output_chain(ngx_output_chain_ctx_t *ctx, ngx_chain_t *in) return last; } - last = ctx->output_filter(ctx->output_ctx, out); + last = ctx->output_filter(ctx->filter_ctx, out); ngx_chain_update_chains(&ctx->free, &ctx->busy, &out, ctx->tag); last_out = &out; -- cgit