From d19b4ffdf478def989ce7a64d6b7c65f066511cc Mon Sep 17 00:00:00 2001 From: Doug MacEachern Date: Tue, 13 Feb 2001 20:16:15 +0000 Subject: [PATCH] s/apr_bucket_pipe_creat/apr_bucket_pipe_create/ typo git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88141 13f79535-47bb-0310-9956-ffa450edef68 --- modules/generators/mod_cgi.c | 6 +++--- modules/generators/mod_cgid.c | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/generators/mod_cgi.c b/modules/generators/mod_cgi.c index 057aeec0bd..abdd120e29 100644 --- a/modules/generators/mod_cgi.c +++ b/modules/generators/mod_cgi.c @@ -767,7 +767,7 @@ static int cgi_handler(request_rec *r) ap_send_http_header(r); if (!r->header_only) { bb = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(script_in); + b = apr_bucket_pipe_create(script_in); APR_BRIGADE_INSERT_TAIL(bb, b); b = apr_bucket_eos_create(); APR_BRIGADE_INSERT_TAIL(bb, b); @@ -780,7 +780,7 @@ static int cgi_handler(request_rec *r) if (script_in && nph) { bb = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(script_in); + b = apr_bucket_pipe_create(script_in); APR_BRIGADE_INSERT_TAIL(bb, b); b = apr_bucket_eos_create(); APR_BRIGADE_INSERT_TAIL(bb, b); @@ -893,7 +893,7 @@ static int include_cmd(include_ctx_t *ctx, apr_bucket_brigade **bb, char *comman } bcgi = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(script_in); + b = apr_bucket_pipe_create(script_in); APR_BRIGADE_INSERT_TAIL(bcgi, b); ap_pass_brigade(f->next, bcgi); diff --git a/modules/generators/mod_cgid.c b/modules/generators/mod_cgid.c index 43fd49dc2e..84a094386f 100644 --- a/modules/generators/mod_cgid.c +++ b/modules/generators/mod_cgid.c @@ -992,7 +992,7 @@ static int cgid_handler(request_rec *r) ap_send_http_header(r); if (!r->header_only) { bb = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(tempsock); + b = apr_bucket_pipe_create(tempsock); APR_BRIGADE_INSERT_TAIL(bb, b); b = apr_bucket_eos_create(); APR_BRIGADE_INSERT_TAIL(bb, b); @@ -1002,7 +1002,7 @@ static int cgid_handler(request_rec *r) if (nph) { bb = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(tempsock); + b = apr_bucket_pipe_create(tempsock); APR_BRIGADE_INSERT_TAIL(bb, b); b = apr_bucket_eos_create(); APR_BRIGADE_INSERT_TAIL(bb, b); @@ -1191,7 +1191,7 @@ static int include_cmd(include_ctx_t *ctx, apr_bucket_brigade **bb, char *comman ap_send_http_header(r); if (!r->header_only) { bcgi = apr_brigade_create(r->pool); - b = apr_bucket_pipe_creat(tempsock); + b = apr_bucket_pipe_create(tempsock); APR_BRIGADE_INSERT_TAIL(bcgi, b); ap_pass_brigade(f->next, bcgi); } -- 2.50.0