summaryrefslogtreecommitdiff
path: root/modules/test
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2002-05-31 20:52:28 +0000
committerRyan Bloom <rbb@apache.org>2002-05-31 20:52:28 +0000
commitca5fd7fb7b5f715b8ab719024739cd2c50c4a32d (patch)
treeb70efdb4f4565f7263a05e0cc40a7229b8de83ae /modules/test
parent0971e59fed4f40143760303e991cea2bb2dcaac4 (diff)
downloadhttpd-ca5fd7fb7b5f715b8ab719024739cd2c50c4a32d.tar.gz
The apr_bucket change requires a minor MMN bump. Also modify Apache's
filters to use APR_BUCKET_IS_METADATA macro. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95454 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/test')
-rw-r--r--modules/test/mod_bucketeer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/test/mod_bucketeer.c b/modules/test/mod_bucketeer.c
index bb8ddb145e..6738cd69cc 100644
--- a/modules/test/mod_bucketeer.c
+++ b/modules/test/mod_bucketeer.c
@@ -141,7 +141,7 @@ static apr_status_t bucketeer_out_filter(ap_filter_t *f,
continue;
}
- if (e->length == 0) {
+ if (APR_BUCKET_IS_METADATA(e)) {
/* metadata bucket */
apr_bucket *cpy;
apr_bucket_copy(e, &cpy);