diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-12-21 06:34:31 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2002-12-21 06:34:31 +0000 |
commit | 4456b3274f5646e928b2d3ed470d65d0d7f6ee87 (patch) | |
tree | dc6bdfa8fd574664c0bf09ed0515a16eb48fe510 /sapi | |
parent | f4883b916caf17536a366aa679f5f93b75537ebe (diff) | |
download | php-git-4456b3274f5646e928b2d3ed470d65d0d7f6ee87.tar.gz |
WS
Diffstat (limited to 'sapi')
-rw-r--r-- | sapi/apache2filter/sapi_apache2.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sapi/apache2filter/sapi_apache2.c b/sapi/apache2filter/sapi_apache2.c index 47fdc975f4..0c7d938741 100644 --- a/sapi/apache2filter/sapi_apache2.c +++ b/sapi/apache2filter/sapi_apache2.c @@ -337,14 +337,14 @@ static int php_input_filter(ap_filter_t *f, apr_bucket_brigade *bb, apr_bucket_read(b, &str, &n, 1); /* - * An intuitive brigade bug detection + * An intuitive brigade bug detection * (http://bugs.php.net/18648) * - * This has something to do with the issue mentioned in this thread - * on dev@httpd.apache.org: + * This has something to do with the issue mentioned in this thread + * on dev@httpd.apache.org: * - * http://marc.theaimsgroup.com/?l=apr-dev&m=104039770818472&w=2 - */ + * http://marc.theaimsgroup.com/?l=apr-dev&m=104039770818472&w=2 + */ if (APR_BUCKET_IS_HEAP(b)) { if ((str == prev_fetched_str && n == prev_fetched_str_len)) { char *brigade_dump = NULL; |