dougm 01/02/13 12:16:21
Modified: modules/generators mod_cgi.c mod_cgid.c
buckets apr_buckets_pipe.c
include apr_buckets.h
Log:
s/apr_bucket_pipe_creat/apr_bucket_pipe_create/ typo
Revision Changes Path
1.88 +3 -3 httpd-2.0/modules/generators/mod_cgi.c
Index: mod_cgi.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/generators/mod_cgi.c,v
retrieving revision 1.87
retrieving revision 1.88
diff -u -r1.87 -r1.88
--- mod_cgi.c 2001/02/10 14:04:19 1.87
+++ mod_cgi.c 2001/02/13 20:16:14 1.88
@@ -767,7 +767,7 @@
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 @@
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 @@
}
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);
1.73 +3 -3 httpd-2.0/modules/generators/mod_cgid.c
Index: mod_cgid.c
===================================================================
RCS file: /home/cvs/httpd-2.0/modules/generators/mod_cgid.c,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- mod_cgid.c 2001/02/11 01:09:01 1.72
+++ mod_cgid.c 2001/02/13 20:16:15 1.73
@@ -992,7 +992,7 @@
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 @@
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 @@
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);
}
1.28 +2 -2 apr-util/buckets/apr_buckets_pipe.c
Index: apr_buckets_pipe.c
===================================================================
RCS file: /home/cvs/apr-util/buckets/apr_buckets_pipe.c,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- apr_buckets_pipe.c 2001/02/08 07:45:24 1.27
+++ apr_buckets_pipe.c 2001/02/13 20:16:17 1.28
@@ -102,7 +102,7 @@
* new bucket.
*/
if (*len > 0) {
- b = apr_bucket_pipe_creat(p);
+ b = apr_bucket_pipe_create(p);
APR_BUCKET_INSERT_AFTER(a, b);
}
else if (rv == APR_EOF) {
@@ -134,7 +134,7 @@
return b;
}
-APU_DECLARE(apr_bucket *) apr_bucket_pipe_creat(apr_file_t *p)
+APU_DECLARE(apr_bucket *) apr_bucket_pipe_create(apr_file_t *p)
{
apr_bucket_do_create(apr_bucket_pipe_make(b, p));
}
1.76 +2 -2 apr-util/include/apr_buckets.h
Index: apr_buckets.h
===================================================================
RCS file: /home/cvs/apr-util/include/apr_buckets.h,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- apr_buckets.h 2001/02/13 19:23:01 1.75
+++ apr_buckets.h 2001/02/13 20:16:19 1.76
@@ -1183,9 +1183,9 @@
* Create a bucket referring to a pipe.
* @param thispipe The pipe to put in the bucket
* @return The new bucket, or NULL if allocation failed
- * @deffunc apr_bucket *apr_bucket_pipe_creat(apr_file_t *thispipe)
+ * @deffunc apr_bucket *apr_bucket_pipe_create(apr_file_t *thispipe)
*/
-APU_DECLARE(apr_bucket *) apr_bucket_pipe_creat(apr_file_t *thispipe);
+APU_DECLARE(apr_bucket *) apr_bucket_pipe_create(apr_file_t *thispipe);
/**
* Make the bucket passed in a bucket refer to a pipe