From: Jeff Trawick Date: Tue, 11 Sep 2001 11:19:23 +0000 (+0000) Subject: fix a typo which prevented mod_mem_cache from compiling with X-Git-Tag: 2.0.26~272 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7ed108565700e456b69174b1284563f6f403b695;p=apache fix a typo which prevented mod_mem_cache from compiling with AP_DEBUG_ASSERT() enabled git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91001 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/experimental/mod_mem_cache.c b/modules/experimental/mod_mem_cache.c index 9117e95189..d524febd9f 100644 --- a/modules/experimental/mod_mem_cache.c +++ b/modules/experimental/mod_mem_cache.c @@ -508,7 +508,7 @@ static int write_body(cache_handle_t *h, apr_bucket_brigade *b) /* This should not happen, but if it does, we are in BIG trouble * cause we just stomped all over the heap. */ - AP_DEBUG_ASSERT(h->cache_object->count > mobj->m_len); + AP_DEBUG_ASSERT(h->cache_obj->count > mobj->m_len); } return OK;