diff options
Diffstat (limited to 'src/zenserver/cache/structuredcache.cpp')
| -rw-r--r-- | src/zenserver/cache/structuredcache.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/zenserver/cache/structuredcache.cpp b/src/zenserver/cache/structuredcache.cpp index 9f2a448bb..c9f942033 100644 --- a/src/zenserver/cache/structuredcache.cpp +++ b/src/zenserver/cache/structuredcache.cpp @@ -356,7 +356,7 @@ HttpStructuredCacheService::Flush() } void -HttpStructuredCacheService::Scrub(ScrubContext& Ctx) +HttpStructuredCacheService::ScrubStorage(ScrubContext& Ctx) { if (m_LastScrubTime == Ctx.ScrubTimestamp()) { @@ -365,8 +365,8 @@ HttpStructuredCacheService::Scrub(ScrubContext& Ctx) m_LastScrubTime = Ctx.ScrubTimestamp(); - m_CidStore.Scrub(Ctx); - m_CacheStore.Scrub(Ctx); + m_CidStore.ScrubStorage(Ctx); + m_CacheStore.ScrubStorage(Ctx); } void |