Submitted by: Bojan Smojver <bojan rexursive.com>
Reviewed by: Andr� Malo, Jeff Trawick, Joe Orton
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/APACHE_2_0_BRANCH@103790
13f79535-47bb-0310-9956-
ffa450edef68
Changes with Apache 2.0.50
+ *) mod_logio no longer removes the EOS bucket. PR 27928.
+ [Bojan Smojver <bojan rexursive.com>]
+
*) htpasswd no longer refuses to process files that contain empty
lines. [André Malo]
APACHE 2.0 STATUS: -*-text-*-
-Last modified at [$Date: 2004/05/26 23:14:03 $]
+Last modified at [$Date: 2004/05/26 23:30:38 $]
Release:
http://www.apache.org/~nd/mod_rewrite_fixleak.diff
+1: nd
- *) mod_logio no longer removes the EOS bucket. PR 27928.
- modules/loggers/mod_logio.c: r1.8
- +1: nd, trawick, jorton
-
*) mod_rewrite no longer turns forward proxy requests into reverse proxy
requests. PR 28125
modules/mappers/mod_rewrite.c: r1.255
/* End of data, make sure we flush */
if (APR_BUCKET_IS_EOS(b)) {
- APR_BRIGADE_INSERT_TAIL(bb,
- apr_bucket_flush_create(f->c->bucket_alloc));
- APR_BUCKET_REMOVE(b);
- apr_bucket_destroy(b);
+ APR_BUCKET_INSERT_BEFORE(b,
+ apr_bucket_flush_create(f->c->bucket_alloc));
}
return ap_pass_brigade(f->next, bb);