Commit d19b4ffd authored by Doug MacEachern's avatar Doug MacEachern
Browse files

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
parent 19bc4e44
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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);

+3 −3
Original line number Diff line number Diff line
@@ -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);
    }