From: Doug MacEachern Date: Tue, 13 Feb 2001 20:16:15 +0000 (+0000) Subject: s/apr_bucket_pipe_creat/apr_bucket_pipe_create/ typo X-Git-Tag: 2.0.11~18 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d42ea0426e3948a1a68df013f6176d4a75527ac1;p=apache 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 --- 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); }