diff options
author | Nick Mathewson <nickm@torproject.org> | 2004-04-13 17:20:41 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2004-04-13 17:20:41 +0000 |
commit | 11ca973d260f195d27915dc7d1a8f892ed1da9c0 (patch) | |
tree | f81f275947a31a57f7788347caf86b8567bf3577 /src/or/rendservice.c | |
parent | a2ece0fc08ce7c59ce82402591a4b28b86038a92 (diff) | |
download | tor-11ca973d260f195d27915dc7d1a8f892ed1da9c0.tar tor-11ca973d260f195d27915dc7d1a8f892ed1da9c0.tar.gz |
Mark service descriptors as dirty when we have lost an intro point
svn:r1608
Diffstat (limited to 'src/or/rendservice.c')
-rw-r--r-- | src/or/rendservice.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 22c521916..289e2bf07 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -734,7 +734,7 @@ void rend_services_introduce(void) { router = router_get_by_nickname(smartlist_get(service->intro_nodes,j)); if (!router || !find_intro_circuit(router,service->pk_digest)) { smartlist_del(service->intro_nodes,j--); - changed = 1; + changed = service->desc_is_dirty = 1; } smartlist_add(intro_routers, router); } |