diff options
author | David Goulet <dgoulet@torproject.org> | 2017-05-10 11:04:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-08 20:29:33 -0400 |
commit | 5d2506d70cdc73d840e0222d0f007365ae44fac0 (patch) | |
tree | 29bad19384531e5826d5debdbd8030eff923561f /src/or/hs_cache.c | |
parent | 848e701f55039b43e90cb1dae226db567876f2d3 (diff) | |
download | tor-5d2506d70cdc73d840e0222d0f007365ae44fac0.tar.gz tor-5d2506d70cdc73d840e0222d0f007365ae44fac0.zip |
prop224: Sandbox support for service
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_cache.c')
-rw-r--r-- | src/or/hs_cache.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/hs_cache.c b/src/or/hs_cache.c index 29681b42b5..30215d8681 100644 --- a/src/or/hs_cache.c +++ b/src/or/hs_cache.c @@ -124,8 +124,10 @@ cache_store_v3_as_dir(hs_cache_dir_descriptor_t *desc) if (cache_entry->plaintext_data->revision_counter >= desc->plaintext_data->revision_counter) { log_info(LD_REND, "Descriptor revision counter in our cache is " - "greater or equal than the one we received. " - "Rejecting!"); + "greater or equal than the one we received (%d/%d). " + "Rejecting!", + (int)cache_entry->plaintext_data->revision_counter, + (int)desc->plaintext_data->revision_counter); goto err; } /* We now know that the descriptor we just received is a new one so |