From: Nick Mathewson Date: Tue, 13 Apr 2004 17:20:41 +0000 (+0000) Subject: Mark service descriptors as dirty when we have lost an intro point X-Git-Tag: tor-0.0.6incompat-merged~36 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=11ca973d260f195d27915dc7d1a8f892ed1da9c0;p=thirdparty%2Ftor.git Mark service descriptors as dirty when we have lost an intro point svn:r1608 --- diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 22c521916b..289e2bf079 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); }