diff options
| author | Ryan Bloom <rbb@apache.org> | 2002-05-31 20:52:28 +0000 |
|---|---|---|
| committer | Ryan Bloom <rbb@apache.org> | 2002-05-31 20:52:28 +0000 |
| commit | ca5fd7fb7b5f715b8ab719024739cd2c50c4a32d (patch) | |
| tree | b70efdb4f4565f7263a05e0cc40a7229b8de83ae /modules/test | |
| parent | 0971e59fed4f40143760303e991cea2bb2dcaac4 (diff) | |
| download | httpd-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.c | 2 |
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); |
