summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets_simple.c
diff options
context:
space:
mode:
Diffstat (limited to 'buckets/apr_buckets_simple.c')
-rw-r--r--buckets/apr_buckets_simple.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/buckets/apr_buckets_simple.c b/buckets/apr_buckets_simple.c
index 14f11ba7d..fbe79810e 100644
--- a/buckets/apr_buckets_simple.c
+++ b/buckets/apr_buckets_simple.c
@@ -45,7 +45,7 @@ APR_DECLARE_NONSTD(apr_status_t) apr_bucket_simple_split(apr_bucket *a,
return APR_SUCCESS;
}
-static apr_status_t simple_bucket_read(apr_bucket *b, const char **str,
+static apr_status_t simple_bucket_read(apr_bucket *b, const char **str,
apr_size_t *len, apr_read_type_e block)
{
*str = (char *)b->data + b->start;
@@ -129,7 +129,7 @@ const apr_bucket_type_t apr_bucket_type_immortal = {
APR_DECLARE_DATA const apr_bucket_type_t apr_bucket_type_transient = {
"TRANSIENT", 5, APR_BUCKET_DATA,
- apr_bucket_destroy_noop,
+ apr_bucket_destroy_noop,
simple_bucket_read,
transient_bucket_setaside,
apr_bucket_simple_split,