]> granicus.if.org Git - apache/commitdiff
fix a typo which prevented mod_mem_cache from compiling with
authorJeff Trawick <trawick@apache.org>
Tue, 11 Sep 2001 11:19:23 +0000 (11:19 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 11 Sep 2001 11:19:23 +0000 (11:19 +0000)
AP_DEBUG_ASSERT() enabled

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91001 13f79535-47bb-0310-9956-ffa450edef68

modules/experimental/mod_mem_cache.c

index 9117e95189046625033f6818c16f54e9bcfc5aae..d524febd9f623b4edfb718433ea96823c626b0f5 100644 (file)
@@ -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;