aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendcache.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2017-08-30 09:15:54 -0400
committerDavid Goulet <dgoulet@torproject.org>2017-08-30 09:15:54 -0400
commit22295759afa90f19b06e2b657ce84d518c2390fd (patch)
tree87ab2f6eeca8091e4c775c031910863b918077b3 /src/or/rendcache.c
parent209bfe715cc8c1c59b2578c406749a0d4a5bd8cb (diff)
downloadtor-22295759afa90f19b06e2b657ce84d518c2390fd.tar.gz
tor-22295759afa90f19b06e2b657ce84d518c2390fd.zip
prop224: Purge client state on NEWNYM
Closes #23355 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/rendcache.c')
-rw-r--r--src/or/rendcache.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendcache.c b/src/or/rendcache.c
index 792f6a1302..b98b2bccfa 100644
--- a/src/or/rendcache.c
+++ b/src/or/rendcache.c
@@ -303,7 +303,7 @@ void
rend_cache_purge(void)
{
if (rend_cache) {
- log_info(LD_REND, "Purging HS descriptor cache");
+ log_info(LD_REND, "Purging HS v2 descriptor cache");
strmap_free(rend_cache, rend_cache_entry_free_);
}
rend_cache = strmap_new();
@@ -315,7 +315,7 @@ void
rend_cache_failure_purge(void)
{
if (rend_cache_failure) {
- log_info(LD_REND, "Purging HS failure cache");
+ log_info(LD_REND, "Purging HS v2 failure cache");
strmap_free(rend_cache_failure, rend_cache_failure_entry_free_);
}
rend_cache_failure = strmap_new();