From: Graham Leggett Date: Tue, 21 Sep 2010 22:47:14 +0000 (+0000) Subject: Update mod_disk_cache to comply with the new create_entity() interface. X-Git-Tag: 2.3.9~463 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=20235c3937760deb80c128eb6b34cef15a1a4fef;p=thirdparty%2Fapache%2Fhttpd.git Update mod_disk_cache to comply with the new create_entity() interface. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@999678 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/cache/mod_disk_cache.c b/modules/cache/mod_disk_cache.c index bd4728277b5..88cfb7d5135 100644 --- a/modules/cache/mod_disk_cache.c +++ b/modules/cache/mod_disk_cache.c @@ -331,7 +331,8 @@ static void tokens_to_array(apr_pool_t *p, const char *data, /* * Hook and mod_cache callback functions */ -static int create_entity(cache_handle_t *h, request_rec *r, const char *key, apr_off_t len) +static int create_entity(cache_handle_t *h, request_rec *r, const char *key, apr_off_t len, + apr_bucket_brigade *bb) { disk_cache_conf *conf = ap_get_module_config(r->server->module_config, &disk_cache_module);